本文整理匯總了C#中Microsoft.WindowsAzure.Storage.Blob.CloudBlob.DeleteAsync方法的典型用法代碼示例。如果您正苦於以下問題:C# CloudBlob.DeleteAsync方法的具體用法?C# CloudBlob.DeleteAsync怎麽用?C# CloudBlob.DeleteAsync使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Microsoft.WindowsAzure.Storage.Blob.CloudBlob
的用法示例。
在下文中一共展示了CloudBlob.DeleteAsync方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: SetAvailableStateTask
/// <summary>
/// Puts the lease on the given blob in an available state.
/// </summary>
/// <param name="blob">The blob with the lease.</param>
internal static void SetAvailableStateTask(CloudBlob blob)
{
bool shouldBreakFirst = false;
try
{
blob.DeleteIfExistsAsync().Wait();
}
catch (AggregateException ex)
{
StorageException exception = ex.InnerException as StorageException;
if (exception == null)
{
throw;
}
if (exception.RequestInformation.ExtendedErrorInformation.ErrorCode == BlobErrorCodeStrings.LeaseIdMissing)
{
shouldBreakFirst = true;
}
else
{
throw;
}
}
if (shouldBreakFirst)
{
blob.BreakLeaseAsync(TimeSpan.Zero).Wait();
blob.DeleteAsync().Wait();
}
CreateBlobTask(blob);
}
示例2: SetAvailableStateAsync
/// <summary>
/// Puts the lease on the given blob in an available state.
/// </summary>
/// <param name="blob">The blob with the lease.</param>
internal static async Task SetAvailableStateAsync(CloudBlob blob)
{
bool shouldBreakFirst = false;
OperationContext operationContext = new OperationContext();
try
{
await blob.DeleteIfExistsAsync(DeleteSnapshotsOption.None, null, null, operationContext);
}
catch (Exception)
{
if (operationContext.LastResult.ExtendedErrorInformation.ErrorCode == BlobErrorCodeStrings.LeaseIdMissing)
{
shouldBreakFirst = true;
}
else
{
throw;
}
}
if (shouldBreakFirst)
{
await blob.BreakLeaseAsync(TimeSpan.Zero);
await blob.DeleteAsync();
}
await CreateBlobAsync(blob);
}
示例3: DeleteCloudBlobAsync
/// <summary>
/// Return a task that asynchronously delete the specified blob
/// </summary>
/// <param name="blob">CloudBlob object</param>
/// <param name="deleteSnapshotsOption">Snapshot delete option</param>
/// <param name="accessCondition">Access condition</param>
/// <param name="requestOptions">Blob request option</param>
/// <param name="operationContext">Operation context</param>
/// <param name="cmdletCancellationToken">Cancellation token</param>
/// <returns>Return a task that asynchronously delete the specified blob</returns>
public Task DeleteCloudBlobAsync(CloudBlob blob, DeleteSnapshotsOption deleteSnapshotsOption, AccessCondition accessCondition, BlobRequestOptions requestOptions, OperationContext operationContext, CancellationToken cancellationToken)
{
return blob.DeleteAsync(deleteSnapshotsOption, accessCondition, requestOptions, operationContext, cancellationToken);
}