Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Begins 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

 
ICancellableAsyncResult BeginBreakLease(
	Nullable<TimeSpan> breakPeriod,
	AsyncCallback callback,
	object state
)
 
ICancellableAsyncResult^ BeginBreakLease(
	Nullable<TimeSpan> breakPeriod,
	AsyncCallback^ callback,
	Object^ state
)
 
abstract BeginBreakLease : 
        breakPeriod:Nullable<TimeSpan> *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
 
Function BeginBreakLease (
	breakPeriod As Nullable(Of TimeSpan),
	callback As AsyncCallback,
	state As Object
) As ICancellableAsyncResult

Parameters

breakPeriod
Type: System.Nullable<TimeSpan>System::Nullable<TimeSpan>System.Nullable<TimeSpan>System.Nullable(Of TimeSpan)

A TimeSpan representing the amount of time to allow the lease to remain, which will be rounded down to seconds.

callback
Type: System.AsyncCallbackSystem::AsyncCallback^System.AsyncCallbackSystem.AsyncCallback

An optional callback delegate that will receive notification when the asynchronous operation completes.

state
Type: System.ObjectSystem::Object^System.ObjectSystem.Object

A user-defined object that will be passed to the callback delegate.

Return to top