ShareServiceClient.CreateShare Method

Definition

The CreateShare(String, 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.ShareClient> CreateShare (string shareName, Azure.Storage.Files.Shares.Models.ShareCreateOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateShare : string * Azure.Storage.Files.Shares.Models.ShareCreateOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.Shares.ShareClient>
override this.CreateShare : string * Azure.Storage.Files.Shares.Models.ShareCreateOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.Shares.ShareClient>
Public Overridable Function CreateShare (shareName As String, options As ShareCreateOptions, Optional cancellationToken As CancellationToken = Nothing) As Response(Of ShareClient)

Parameters

shareName
String

The name of the share to create.

options
ShareCreateOptions

Optional parameters.

cancellationToken
CancellationToken

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

Returns

A Response<T> referencing the newly created share.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to