ShareClient.CreateIfNotExists(ShareCreateOptions, CancellationToken) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
public virtual Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo> CreateIfNotExists (Azure.Storage.Files.Shares.Models.ShareCreateOptions options = default, 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)
Public Overridable Function CreateIfNotExists (Optional options As ShareCreateOptions = Nothing, 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
Azure SDK for .NET