ShareClient.CreateIfNotExistsAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
CreateIfNotExistsAsync(IDictionary<String,String>, Nullable<Int32>, CancellationToken) |
A operação CreateIfNotExistsAsync(IDictionary<String,String>, Nullable<Int32>, CancellationToken) cria um compartilhamento sob a conta especificada. Se já existir um compartilhamento com o mesmo nome, ele não será alterado. Para obter mais informações, consulte Criar Compartilhamento. |
CreateIfNotExistsAsync(ShareCreateOptions, CancellationToken) |
A operação CreateIfNotExistsAsync(IDictionary<String,String>, Nullable<Int32>, CancellationToken) cria um compartilhamento sob a conta especificada. Se já existir um compartilhamento com o mesmo nome, ele não será alterado. Para obter mais informações, consulte Criar Compartilhamento. |
CreateIfNotExistsAsync(IDictionary<String,String>, Nullable<Int32>, CancellationToken)
- Origem:
- ShareClient.cs
- Origem:
- ShareClient.cs
A operação CreateIfNotExistsAsync(IDictionary<String,String>, Nullable<Int32>, CancellationToken) cria um compartilhamento sob a conta especificada. Se já existir um compartilhamento com o mesmo nome, ele não será alterado.
Para obter mais informações, consulte Criar Compartilhamento.
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>> CreateIfNotExistsAsync (System.Collections.Generic.IDictionary<string,string> metadata = default, int? quotaInGB = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateIfNotExistsAsync : System.Collections.Generic.IDictionary<string, string> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>>
override this.CreateIfNotExistsAsync : System.Collections.Generic.IDictionary<string, string> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>>
Public Overridable Function CreateIfNotExistsAsync (Optional metadata As IDictionary(Of String, String) = Nothing, Optional quotaInGB As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of ShareInfo))
Parâmetros
- metadata
- IDictionary<String,String>
Metadados personalizados opcionais a serem definidos para esse compartilhamento.
Opcional. Tamanho máximo do compartilhamento em bytes. Se não for especificado, use o valor padrão do serviço.
- cancellationToken
- CancellationToken
Opcional CancellationToken para propagar notificações de que a operação deve ser cancelada.
Retornos
Um Response<T> que descreve o compartilhamento recém-criado. Se o compartilhamento já existir, null
.
Comentários
Um RequestFailedException será gerado se ocorrer uma falha.
Aplica-se a
CreateIfNotExistsAsync(ShareCreateOptions, CancellationToken)
- Origem:
- ShareClient.cs
- Origem:
- ShareClient.cs
A operação CreateIfNotExistsAsync(IDictionary<String,String>, Nullable<Int32>, CancellationToken) cria um compartilhamento sob a conta especificada. Se já existir um compartilhamento com o mesmo nome, ele não será alterado.
Para obter mais informações, consulte Criar Compartilhamento.
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>> CreateIfNotExistsAsync (Azure.Storage.Files.Shares.Models.ShareCreateOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateIfNotExistsAsync : Azure.Storage.Files.Shares.Models.ShareCreateOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>>
override this.CreateIfNotExistsAsync : Azure.Storage.Files.Shares.Models.ShareCreateOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.Shares.Models.ShareInfo>>
Public Overridable Function CreateIfNotExistsAsync (options As ShareCreateOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of ShareInfo))
Parâmetros
- options
- ShareCreateOptions
Parâmetros opcionais.
- cancellationToken
- CancellationToken
Opcional CancellationToken para propagar notificações de que a operação deve ser cancelada.
Retornos
Um Response<T> que descreve o compartilhamento recém-criado. Se o compartilhamento já existir, null
.
Comentários
Um RequestFailedException será gerado se ocorrer uma falha.
Aplica-se a
Azure SDK for .NET