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

 
[DoesServiceRequestAttribute]
public virtual ICancellableAsyncResult BeginBreakLease(
	Nullable<TimeSpan> breakPeriod,
	AsyncCallback callback,
	object state
)
 
public:
[DoesServiceRequestAttribute]
virtual ICancellableAsyncResult^ BeginBreakLease(
	Nullable<TimeSpan> breakPeriod,
	AsyncCallback^ callback,
	Object^ state
)
 
[<DoesServiceRequestAttribute>]
abstract BeginBreakLease : 
        breakPeriod:Nullable<TimeSpan> *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
[<DoesServiceRequestAttribute>]
override BeginBreakLease : 
        breakPeriod:Nullable<TimeSpan> *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
 
<DoesServiceRequestAttribute>
Public Overridable 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. If null, the break period is the remainder of the current lease, or zero for infinite leases.

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