本文整理匯總了C#中BlobServiceClient.PutBlockBlobAsync方法的典型用法代碼示例。如果您正苦於以下問題:C# BlobServiceClient.PutBlockBlobAsync方法的具體用法?C# BlobServiceClient.PutBlockBlobAsync怎麽用?C# BlobServiceClient.PutBlockBlobAsync使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類BlobServiceClient
的用法示例。
在下文中一共展示了BlobServiceClient.PutBlockBlobAsync方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: PutBlockBlobAsync_LeasedBlobWithNoLeaseGiven_ThrowsLeaseIdMissingAzureException
public async void PutBlockBlobAsync_LeasedBlobWithNoLeaseGiven_ThrowsLeaseIdMissingAzureException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
_util.LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var data = Encoding.UTF8.GetBytes("unit test content");
await client.PutBlockBlobAsync(containerName, blobName, data);
// throws exception
}
示例2: PutBlockBlobAsync_LeasedBlobWithCorrectLeaseId_UploadsBlobSuccessfully
public async void PutBlockBlobAsync_LeasedBlobWithCorrectLeaseId_UploadsBlobSuccessfully()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
var correctLease = _util.LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var data = Encoding.UTF8.GetBytes("unit test content");
await client.PutBlockBlobAsync(containerName, blobName, data, leaseId: correctLease);
_util.AssertBlobExists(containerName, blobName, BlobType.BlockBlob);
}
示例3: PutBlockBlobAsync_WithIncorrectContentMD5_ThrowsMD5MismatchAzureException
public async Task PutBlockBlobAsync_WithIncorrectContentMD5_ThrowsMD5MismatchAzureException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var data = Encoding.UTF8.GetBytes("unit test content");
var someOtherData = Encoding.UTF8.GetBytes("different content");
var incorrectContentMD5 = Convert.ToBase64String((MD5.Create()).ComputeHash(someOtherData));
await client.PutBlockBlobAsync(containerName, blobName, data, contentMD5: incorrectContentMD5);
// expects exception
}
示例4: PutBlockBlobAsync_RequiredArgsOnly_UploadsBlobSuccessfully
public async Task PutBlockBlobAsync_RequiredArgsOnly_UploadsBlobSuccessfully()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var data = Encoding.UTF8.GetBytes("unit test content");
await client.PutBlockBlobAsync(containerName, blobName, data);
_util.AssertBlobExists(containerName, blobName, BlobType.BlockBlob);
}
示例5: PutBlockBlobAsync_LeasedBlobWithInvalidLeaseGiven_ThrowsArgumentException
public async void PutBlockBlobAsync_LeasedBlobWithInvalidLeaseGiven_ThrowsArgumentException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var data = Encoding.UTF8.GetBytes("unit test content");
await client.PutBlockBlobAsync(containerName, blobName, data, leaseId: InvalidLeaseId);
// throws exception
}
示例6: GenerateSampleContainerName
public async void PutBlockBlobAsync_LeasedBlobWithIncorrectLeaseGiven_ThrowsLeaseIdMismatchWithBlobOperationAzureException()
{
var containerName = GenerateSampleContainerName();
var blobName = GenerateSampleBlobName();
CreateContainer(containerName);
CreateBlockBlob(containerName, blobName);
LeaseBlob(containerName, blobName);
IBlobServiceClient client = new BlobServiceClient(AccountSettings);
var data = Encoding.UTF8.GetBytes("unit test content");
await client.PutBlockBlobAsync(containerName, blobName, data, leaseId: GetGuidString());
// throws exception
}