ShareClient.CreateIfNotExists(ShareCreateOptions, CancellationToken) Method

Definition

The CreateIfNotExists(ShareCreateOptions, CancellationToken) operation creates a new share under the specified account. If a share with the same name already exists, it is not changed.

For more information, see Create Share.

public virtual Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo> CreateIfNotExists (Azure.Storage.Files.Shares.Models.ShareCreateOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateIfNotExists : Azure.Storage.Files.Shares.Models.ShareCreateOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>
override this.CreateIfNotExists : Azure.Storage.Files.Shares.Models.ShareCreateOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>
Public Overridable Function CreateIfNotExists (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. If the share already exists, null.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to