SpecializedBlobExtensions.GetBlobLeaseClient Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetBlobLeaseClient(BlobContainerClient, String) |
Initializes a new instance of the BlobLeaseClient class. |
GetBlobLeaseClient(BlobBaseClient, String) |
Initializes a new instance of the BlobLeaseClient class. |
GetBlobLeaseClient(BlobContainerClient, String)
- Source:
- BlobLeaseClient.cs
- Source:
- BlobLeaseClient.cs
Initializes a new instance of the BlobLeaseClient class.
public static Azure.Storage.Blobs.Specialized.BlobLeaseClient GetBlobLeaseClient (this Azure.Storage.Blobs.BlobContainerClient client, string leaseId = default);
static member GetBlobLeaseClient : Azure.Storage.Blobs.BlobContainerClient * string -> Azure.Storage.Blobs.Specialized.BlobLeaseClient
<Extension()>
Public Function GetBlobLeaseClient (client As BlobContainerClient, Optional leaseId As String = Nothing) As BlobLeaseClient
Parameters
- client
- BlobContainerClient
A BlobContainerClient representing the container being leased.
- leaseId
- String
An optional lease ID. If no lease ID is provided, a random lease ID will be created.
Applies to
GetBlobLeaseClient(BlobBaseClient, String)
- Source:
- BlobLeaseClient.cs
- Source:
- BlobLeaseClient.cs
Initializes a new instance of the BlobLeaseClient class.
public static Azure.Storage.Blobs.Specialized.BlobLeaseClient GetBlobLeaseClient (this Azure.Storage.Blobs.Specialized.BlobBaseClient client, string leaseId = default);
static member GetBlobLeaseClient : Azure.Storage.Blobs.Specialized.BlobBaseClient * string -> Azure.Storage.Blobs.Specialized.BlobLeaseClient
<Extension()>
Public Function GetBlobLeaseClient (client As BlobBaseClient, Optional leaseId As String = Nothing) As BlobLeaseClient
Parameters
- client
- BlobBaseClient
A BlobClient representing the blob being leased.
- leaseId
- String
An optional lease ID. If no lease ID is provided, a random lease ID will be created.
Applies to
Azure SDK for .NET