本文整理汇总了C#中BlobServiceClient.DeleteBlobAsync方法的典型用法代码示例。如果您正苦于以下问题:C# BlobServiceClient.DeleteBlobAsync方法的具体用法?C# BlobServiceClient.DeleteBlobAsync怎么用?C# BlobServiceClient.DeleteBlobAsync使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlobServiceClient
的用法示例。
在下文中一共展示了BlobServiceClient.DeleteBlobAsync方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DeleteBlobAsync_NonExistingBlob_ThrowsBlobDoesNotExistException
public async void DeleteBlobAsync_NonExistingBlob_ThrowsBlobDoesNotExistException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
var client = new BlobServiceClient(AccountSettings);
// delete blog that doesn't exist => should throw an exception
await client.DeleteBlobAsync(containerName, blobName);
}
示例2: DeleteBlobAsync_LeasedBlobWithInvalidLeaseGiven_ThrowsArgumentException
public async void DeleteBlobAsync_LeasedBlobWithInvalidLeaseGiven_ThrowsArgumentException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
var client = new BlobServiceClient(AccountSettings);
await client.DeleteBlobAsync(containerName, blobName, leaseId: InvalidLeaseId);
// throw exception
}
示例3: BlobServiceClient
public async void DeleteBlobAsync_LeasedBlobWithIncorrectLeaseGiven_ThrowsLeaseIdMismatchWithBlobOperationAzureException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
_util.LeaseBlob(containerName, blobName);
var client = new BlobServiceClient(AccountSettings);
await client.DeleteBlobAsync(containerName, blobName, leaseId: GetGuidString());
// throw exception
}
示例4: DeleteBlobAsync_LeasedBlobWithNoLeaseGiven_ThrowsLeaseIdMissingAzureException
public async void DeleteBlobAsync_LeasedBlobWithNoLeaseGiven_ThrowsLeaseIdMissingAzureException()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
_util.LeaseBlob(containerName, blobName);
var client = new BlobServiceClient(AccountSettings);
await client.DeleteBlobAsync(containerName, blobName);
// throw exception
}
示例5: DeleteBlobAsync_LeasedBlobCorrectLeaseSpecified_DeletesBlob
public async void DeleteBlobAsync_LeasedBlobCorrectLeaseSpecified_DeletesBlob()
{
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName);
var lease = _util.LeaseBlob(containerName, blobName);
var client = new BlobServiceClient(AccountSettings);
await client.DeleteBlobAsync(containerName, blobName, leaseId: lease);
_util.AssertBlobDoesNotExist(containerName, blobName, BlobType.BlockBlob);
}
示例6: DeleteBlobAsync_ExistingBlob_DeletesBlobAsynchronously
public async Task DeleteBlobAsync_ExistingBlob_DeletesBlobAsynchronously()
{
var expectedContent = "Expected blob content";
var containerName = _util.GenerateSampleContainerName(_runId);
var blobName = _util.GenerateSampleBlobName(_runId);
_util.CreateContainer(containerName);
_util.CreateBlockBlob(containerName, blobName, content: expectedContent);
var client = new BlobServiceClient(AccountSettings);
await client.DeleteBlobAsync(containerName, blobName);
_util.AssertBlobDoesNotExist(containerName, blobName, BlobType.BlockBlob);
}