本文整理汇总了C#中BlobServiceClient.PutBlockListAsync方法的典型用法代码示例。如果您正苦于以下问题:C# BlobServiceClient.PutBlockListAsync方法的具体用法?C# BlobServiceClient.PutBlockListAsync怎么用?C# BlobServiceClient.PutBlockListAsync使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlobServiceClient
的用法示例。
在下文中一共展示了BlobServiceClient.PutBlockListAsync方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PutBlockListAsync_WithBlobContentLanguage_UploadsWithSpecifiedBlobContentLanguage
public async void PutBlockListAsync_WithBlobContentLanguage_UploadsWithSpecifiedBlobContentLanguage()
{
const string dataPerBlock = "foo";
const string expectedContentLanguage = "gibberish";
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Latest);
var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
_util.CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds, contentLanguage: expectedContentLanguage);
var blob = _util.AssertBlobExists(containerName, blobName, BlobType.BlockBlob);
Assert.AreEqual(expectedContentLanguage, blob.Properties.ContentLanguage);
}
示例2: PutBlockListAsync_WithMetadata_UploadsMetadata
public async void PutBlockListAsync_WithMetadata_UploadsMetadata()
{
const string dataPerBlock = "foo";
var expectedMetadata = new Dictionary<string, string>(){
{ "firstValue", "1" },
{ "secondValue", "2"}
};
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Latest);
var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
_util.CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds, metadata: expectedMetadata);
var blob = _util.AssertBlobExists(containerName, blobName, BlobType.BlockBlob);
Assert.IsTrue(blob.Metadata.Any(m => m.Key == "firstValue" && m.Value == "1"), "First value is missing or incorrect");
Assert.IsTrue(blob.Metadata.Any(m => m.Key == "secondValue" && m.Value == "2"), "Second value is missing or incorrect");
}
示例3: PutBlockListAsync_WithBlobContentMD5_UploadsWithSpecifiedBlobContentMD5
public async void PutBlockListAsync_WithBlobContentMD5_UploadsWithSpecifiedBlobContentMD5()
{
const string dataPerBlock = "foo";
const string expectedData = "foofoofoo";
var expectedContentMD5 = Convert.ToBase64String((MD5.Create()).ComputeHash(Encoding.Unicode.GetBytes(expectedData)));
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Latest);
var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
_util.CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds, blobContentMD5: expectedContentMD5);
var blob = _util.AssertBlobExists(containerName, blobName, BlobType.BlockBlob);
Assert.AreEqual(expectedContentMD5, blob.Properties.ContentMD5);
}
示例4: PutBlockListAsync_LeasedBlobWithInvalidLeaseGiven_ThrowsArgumentException
public async void PutBlockListAsync_LeasedBlobWithInvalidLeaseGiven_ThrowsArgumentException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Latest);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds, leaseId: InvalidLeaseId);
// throws exception
}
示例5: PutBlockListAsync_InvalidBlockId_ThrowsInvalidBlockListAzureException
public async void PutBlockListAsync_InvalidBlockId_ThrowsInvalidBlockListAzureException()
{
const string dataPerBlock = "foo";
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Latest);
var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
blockListBlockIds.Add(new BlockListBlockId
{
Id = Base64Converter.ConvertToBase64("id4"),
ListType = PutBlockListListType.Latest
});
_util.CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds);
// Throws exception
}
示例6: BlobServiceClient
public async void PutBlockListAsync_LeasedBlobWithIncorrectLeaseGiven_ThrowsLeaseIdMismatchWithBlobOperationAzureException()
{
const string dataPerBlock = "foo";
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Latest);
var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
_util.CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
_util.LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds, leaseId: GetGuidString());
// throws exception
}
示例7: PutBlockListAsync_LeasedBlobCorrectLeaseSpecified_CreatesBlockBlobFromLatestBlocks
public async void PutBlockListAsync_LeasedBlobCorrectLeaseSpecified_CreatesBlockBlobFromLatestBlocks()
{
const string dataPerBlock = "foo";
const string expectedData = "foofoofoo";
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
var blockListBlockIds = _util.CreateBlockIdList(3, PutBlockListListType.Latest);
var blockIds = _util.GetIdsFromBlockIdList(blockListBlockIds);
_util.CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
var lease = _util.LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds, leaseId: lease);
_util.AssertBlobExists(containerName, blobName, BlobType.BlockBlob);
_util.AssertBlobContainsData(containerName, blobName, BlobType.BlockBlob, Encoding.Unicode.GetBytes(expectedData));
}
示例8: PutBlockListAsync_WithBlobContentEncoding_UploadsWithSpecifiedBlobContentEncoding
public async void PutBlockListAsync_WithBlobContentEncoding_UploadsWithSpecifiedBlobContentEncoding()
{
const string dataPerBlock = "foo";
const string expectedContentEncoding = "UTF32";
var containerName = GenerateSampleContainerName();
var blobName = GenerateSampleBlobName();
CreateContainer(containerName);
var blockListBlockIds = CreateBlockIdList(3, BlockListListType.Latest);
var blockIds = GetIdsFromBlockIdList(blockListBlockIds);
CreateBlockList(containerName, blobName, blockIds, dataPerBlock, Encoding.UTF32);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds, contentEncoding: expectedContentEncoding);
var blob = AssertBlobExists(containerName, blobName, BlobType.BlockBlob);
Assert.AreEqual(expectedContentEncoding, blob.Properties.ContentEncoding);
}
示例9: PutBlockListAsync_LeasedBlobWithNoLeaseGiven_ThrowsLeaseIdMissingAzureException
public async void PutBlockListAsync_LeasedBlobWithNoLeaseGiven_ThrowsLeaseIdMissingAzureException()
{
const string dataPerBlock = "foo";
var containerName = GenerateSampleContainerName();
var blobName = GenerateSampleBlobName();
CreateContainer(containerName);
CreateBlockBlob(containerName, blobName);
var blockListBlockIds = CreateBlockIdList(3, BlockListListType.Latest);
var blockIds = GetIdsFromBlockIdList(blockListBlockIds);
CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds);
// throws exception
}
示例10: PutBlockListAsync_RequiredArgsOnly_CreatesBlockBlobFromLatestBlocks
public async void PutBlockListAsync_RequiredArgsOnly_CreatesBlockBlobFromLatestBlocks()
{
const string dataPerBlock = "foo";
const string expectedData = "foofoofoo";
var containerName = GenerateSampleContainerName();
var blobName = GenerateSampleBlobName();
CreateContainer(containerName);
var blockListBlockIds = CreateBlockIdList(3, BlockListListType.Latest);
var blockIds = GetIdsFromBlockIdList(blockListBlockIds);
CreateBlockList(containerName, blobName, blockIds, dataPerBlock);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
await client.PutBlockListAsync(containerName, blobName, blockListBlockIds);
AssertBlobExists(containerName, blobName, BlobType.BlockBlob);
AssertBlobContainsData(containerName, blobName, BlobType.BlockBlob, Encoding.Unicode.GetBytes(expectedData));
}