Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation to delete the blob if it already exists.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
Task<bool> DeleteIfExistsAsync(
	DeleteSnapshotsOption deleteSnapshotsOption,
	AccessCondition accessCondition,
	BlobRequestOptions options,
	OperationContext operationContext
)
 
Task<bool>^ DeleteIfExistsAsync(
	DeleteSnapshotsOption deleteSnapshotsOption,
	AccessCondition^ accessCondition,
	BlobRequestOptions^ options,
	OperationContext^ operationContext
)
 
abstract DeleteIfExistsAsync : 
        deleteSnapshotsOption:DeleteSnapshotsOption *
        accessCondition:AccessCondition *
        options:BlobRequestOptions *
        operationContext:OperationContext -> Task<bool>
 
Function DeleteIfExistsAsync (
	deleteSnapshotsOption As DeleteSnapshotsOption,
	accessCondition As AccessCondition,
	options As BlobRequestOptions,
	operationContext As OperationContext
) As Task(OfBoolean)

Return Value

Type: System.Threading.Tasks.Task<Boolean>System.Threading.Tasks::Task<Boolean>^System.Threading.Tasks.Task<Boolean>System.Threading.Tasks.Task(Of Boolean)

A Task object of type bool that represents the asynchronous operation.

Return to top