ShareClient.Create(ShareCreateOptions, CancellationToken) Method

Definition

The Create(ShareCreateOptions, CancellationToken) operation creates a new share under the specified account. If a share with the same name already exists, the operation fails.

For more information, see Create Share.

public virtual Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo> Create (Azure.Storage.Files.Shares.Models.ShareCreateOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member Create : Azure.Storage.Files.Shares.Models.ShareCreateOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>
override this.Create : Azure.Storage.Files.Shares.Models.ShareCreateOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>
Public Overridable Function Create (options As ShareCreateOptions, Optional cancellationToken As CancellationToken = Nothing) As Response(Of ShareInfo)

Parameters

options
ShareCreateOptions

Optional parameters.

cancellationToken
CancellationToken

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

Returns

A Response<T> describing the newly created share.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to