ShareLeaseClient Constructors
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
ShareLeaseClient() |
Initializes a new instance of the ShareLeaseClient class for mocking. |
ShareLeaseClient(ShareClient, String) |
Initializes a new instance of the ShareLeaseClient class. |
ShareLeaseClient(ShareFileClient, String) |
Initializes a new instance of the ShareLeaseClient class. |
ShareLeaseClient()
- Source:
- ShareLeaseClient.cs
- Source:
- ShareLeaseClient.cs
Initializes a new instance of the ShareLeaseClient class for mocking.
protected ShareLeaseClient ();
Protected Sub New ()
Applies to
ShareLeaseClient(ShareClient, String)
- Source:
- ShareLeaseClient.cs
- Source:
- ShareLeaseClient.cs
Initializes a new instance of the ShareLeaseClient class.
public ShareLeaseClient (Azure.Storage.Files.Shares.ShareClient client, string leaseId = default);
new Azure.Storage.Files.Shares.Specialized.ShareLeaseClient : Azure.Storage.Files.Shares.ShareClient * string -> Azure.Storage.Files.Shares.Specialized.ShareLeaseClient
Public Sub New (client As ShareClient, Optional leaseId As String = Nothing)
Parameters
- client
- ShareClient
A ShareClient representing the share being leased.
- leaseId
- String
An optional lease ID. If no lease ID is provided, a random lease ID will be created.
Applies to
ShareLeaseClient(ShareFileClient, String)
- Source:
- ShareLeaseClient.cs
- Source:
- ShareLeaseClient.cs
Initializes a new instance of the ShareLeaseClient class.
public ShareLeaseClient (Azure.Storage.Files.Shares.ShareFileClient client, string leaseId = default);
new Azure.Storage.Files.Shares.Specialized.ShareLeaseClient : Azure.Storage.Files.Shares.ShareFileClient * string -> Azure.Storage.Files.Shares.Specialized.ShareLeaseClient
Public Sub New (client As ShareFileClient, Optional leaseId As String = Nothing)
Parameters
- client
- ShareFileClient
A ShareFileClient representing the file 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