Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation to break the current lease on this blob.

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

Syntax

 
Task<TimeSpan> BreakLeaseAsync(
	Nullable<TimeSpan> breakPeriod,
	AccessCondition accessCondition,
	BlobRequestOptions options,
	OperationContext operationContext
)
 
Task<TimeSpan>^ BreakLeaseAsync(
	Nullable<TimeSpan> breakPeriod,
	AccessCondition^ accessCondition,
	BlobRequestOptions^ options,
	OperationContext^ operationContext
)
 
abstract BreakLeaseAsync : 
        breakPeriod:Nullable<TimeSpan> *
        accessCondition:AccessCondition *
        options:BlobRequestOptions *
        operationContext:OperationContext -> Task<TimeSpan>
 
Function BreakLeaseAsync (
	breakPeriod As Nullable(Of TimeSpan),
	accessCondition As AccessCondition,
	options As BlobRequestOptions,
	operationContext As OperationContext
) As Task(Of TimeSpan)
Return to top