你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ShareLeaseClient 构造函数

定义

重载

ShareLeaseClient()

初始化 类的新实例 ShareLeaseClient 进行模拟。

ShareLeaseClient(ShareClient, String)

初始化 ShareLeaseClient 类的新实例。

ShareLeaseClient(ShareFileClient, String)

初始化 ShareLeaseClient 类的新实例。

ShareLeaseClient()

Source:
ShareLeaseClient.cs
Source:
ShareLeaseClient.cs

初始化 类的新实例 ShareLeaseClient 进行模拟。

protected ShareLeaseClient ();
Protected Sub New ()

适用于

ShareLeaseClient(ShareClient, String)

Source:
ShareLeaseClient.cs
Source:
ShareLeaseClient.cs

初始化 ShareLeaseClient 类的新实例。

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)

参数

client
ShareClient

一个 ShareClient ,表示要租用的共享。

leaseId
String

可选的租约 ID。 如果未提供租约 ID,则会创建随机租用 ID。

适用于

ShareLeaseClient(ShareFileClient, String)

Source:
ShareLeaseClient.cs
Source:
ShareLeaseClient.cs

初始化 ShareLeaseClient 类的新实例。

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)

参数

client
ShareFileClient

一个 ShareFileClient ,表示要租用的文件。

leaseId
String

可选的租约 ID。 如果未提供租约 ID,则会创建随机租用 ID。

适用于