Changes the lease ID on this blob.
Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As ICloudBlob
Dim proposedLeaseId As String
Dim accessCondition As AccessCondition
Dim returnValue As IAsyncOperation(Of String)
returnValue = instance.ChangeLeaseAsync(proposedLeaseId, accessCondition) |
Syntax
Visual Basic |
---|
Function ChangeLeaseAsync ( _
proposedLeaseId As String, _
accessCondition As AccessCondition _
) As IAsyncOperation(Of String) |
C# |
---|
IAsyncOperation<string> ChangeLeaseAsync (
string proposedLeaseId,
AccessCondition accessCondition
) |
C++ |
---|
IAsyncOperation<String^>^ ChangeLeaseAsync (
String^ proposedLeaseId,
AccessCondition^ accessCondition
) |
J# |
---|
IAsyncOperation<String> ChangeLeaseAsync (
String proposedLeaseId,
AccessCondition accessCondition
) |
JScript |
---|
function ChangeLeaseAsync (
proposedLeaseId : String,
accessCondition : AccessCondition
) : IAsyncOperation<String> |
Parameters
- proposedLeaseId
A string representing the proposed lease ID for the new lease.
- accessCondition
An AccessCondition object that represents the access conditions for the blob, including a required lease ID.
Return Value
The new lease ID.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also