BlobLeaseClient.Acquire メソッド

定義

オーバーロード

Acquire(TimeSpan, RequestConditions, RequestContext)

操作は Acquire(TimeSpan, RequestConditions, RequestContext) 、BLOB またはコンテナーのリースを取得します。 リース duration は 15 ~ 60 秒、または無限 (-1) である必要があります。

コンテナーにアクティブなリースがない場合、BLOB サービスは BLOB またはコンテナーにリースを作成して返します。 コンテナーにアクティブなリースがある場合は、アクティブなリース ID を として LeaseId使用して新しいリースのみを要求できますが、新 durationしい を指定できます。

詳細については、「 リース コンテナー」を参照してください。

Acquire(TimeSpan, RequestConditions, CancellationToken)

操作は Acquire(TimeSpan, RequestConditions, CancellationToken) 、BLOB またはコンテナーのリースを取得します。 リース duration は 15 ~ 60 秒、または無限 (-1) である必要があります。

コンテナーにアクティブなリースがない場合、BLOB サービスは BLOB またはコンテナーにリースを作成して返します。 コンテナーにアクティブなリースがある場合は、アクティブなリース ID を として LeaseId使用して新しいリースのみを要求できますが、新 durationしい を指定できます。

詳細については、「 リース コンテナー」を参照してください。

Acquire(TimeSpan, RequestConditions, RequestContext)

ソース:
BlobLeaseClient.cs
ソース:
BlobLeaseClient.cs

操作は Acquire(TimeSpan, RequestConditions, RequestContext) 、BLOB またはコンテナーのリースを取得します。 リース duration は 15 ~ 60 秒、または無限 (-1) である必要があります。

コンテナーにアクティブなリースがない場合、BLOB サービスは BLOB またはコンテナーにリースを作成して返します。 コンテナーにアクティブなリースがある場合は、アクティブなリース ID を として LeaseId使用して新しいリースのみを要求できますが、新 durationしい を指定できます。

詳細については、「 リース コンテナー」を参照してください。

public virtual Azure.Response Acquire (TimeSpan duration, Azure.RequestConditions conditions, Azure.RequestContext context);
abstract member Acquire : TimeSpan * Azure.RequestConditions * Azure.RequestContext -> Azure.Response
override this.Acquire : TimeSpan * Azure.RequestConditions * Azure.RequestContext -> Azure.Response
Public Overridable Function Acquire (duration As TimeSpan, conditions As RequestConditions, context As RequestContext) As Response

パラメーター

duration
TimeSpan

リースの期間を秒単位で指定するか、期限切れのないリースを指定 InfiniteLeaseDuration します。 無限リースでない場合は、15 ~ 60 秒を指定できます。 RenewAsync(RequestConditions, CancellationToken) または ChangeAsync(String, RequestConditions, CancellationToken) を使用して、リース期間を変更することはできません。

conditions
RequestConditions

リースを取得する際に条件を追加する場合は省略可能 BlobLeaseRequestConditions です。

context
RequestContext

操作の場合は省略可能 RequestContext です。

戻り値

Responseストレージ サービスによって返される 。

注釈

RequestFailedExceptionエラーが発生すると、 がスローされます。

適用対象

Acquire(TimeSpan, RequestConditions, CancellationToken)

ソース:
BlobLeaseClient.cs
ソース:
BlobLeaseClient.cs

操作は Acquire(TimeSpan, RequestConditions, CancellationToken) 、BLOB またはコンテナーのリースを取得します。 リース duration は 15 ~ 60 秒、または無限 (-1) である必要があります。

コンテナーにアクティブなリースがない場合、BLOB サービスは BLOB またはコンテナーにリースを作成して返します。 コンテナーにアクティブなリースがある場合は、アクティブなリース ID を として LeaseId使用して新しいリースのみを要求できますが、新 durationしい を指定できます。

詳細については、「 リース コンテナー」を参照してください。

public virtual Azure.Response<Azure.Storage.Blobs.Models.BlobLease> Acquire (TimeSpan duration, Azure.RequestConditions conditions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member Acquire : TimeSpan * Azure.RequestConditions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.BlobLease>
override this.Acquire : TimeSpan * Azure.RequestConditions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.BlobLease>
Public Overridable Function Acquire (duration As TimeSpan, Optional conditions As RequestConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of BlobLease)

パラメーター

duration
TimeSpan

リースの期間を秒単位で指定するか、期限切れのないリースを指定 InfiniteLeaseDuration します。 無限リースでない場合は、15 ~ 60 秒を指定できます。 RenewAsync(RequestConditions, CancellationToken) または ChangeAsync(String, RequestConditions, CancellationToken) を使用して、リース期間を変更することはできません。

conditions
RequestConditions

リースを取得する際に条件を追加する場合は省略可能 BlobLeaseRequestConditions です。

cancellationToken
CancellationToken

操作を取り消す必要がある通知を伝達する場合は省略可能 CancellationToken です。

戻り値

Response<T>リースを記述する 。

注釈

RequestFailedExceptionエラーが発生すると、 がスローされます。

適用対象