ShareFileClient.ForceCloseAllHandlesAsync(CancellationToken) Method

Definition

The ForceCloseAllHandlesAsync(CancellationToken) operation closes all handles opened on a file at the service.

This API is intended to be used alongside GetHandlesAsync(CancellationToken) to force close handles that block operations. These handles may have leaked or been lost track of by SMB clients. The API has client-side impact on the handle being closed, including user visible errors due to failed attempts to read or write files. This API is not intended for use as a replacement or alternative for SMB close.

For more information, see Force Close Handles.

public virtual System.Threading.Tasks.Task<Azure.Storage.Files.Shares.Models.CloseHandlesResult> ForceCloseAllHandlesAsync (System.Threading.CancellationToken cancellationToken = default);
abstract member ForceCloseAllHandlesAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Storage.Files.Shares.Models.CloseHandlesResult>
override this.ForceCloseAllHandlesAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Storage.Files.Shares.Models.CloseHandlesResult>
Public Overridable Function ForceCloseAllHandlesAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of CloseHandlesResult)

Parameters

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be cancelled.

Returns

A CloseHandlesResult describing the status of the ForceCloseAllHandlesAsync(CancellationToken) operation.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to