CloudTable.DeleteIfExistsAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
DeleteIfExistsAsync() |
Lance une opération asynchrone pour supprimer la table si elle existe. |
DeleteIfExistsAsync(CancellationToken) |
Lance une opération asynchrone pour supprimer la table si elle existe. |
DeleteIfExistsAsync(TableRequestOptions, OperationContext) |
Lance une opération asynchrone pour supprimer la table si elle existe. |
DeleteIfExistsAsync(TableRequestOptions, OperationContext, CancellationToken) |
Lance une opération asynchrone pour supprimer la table si elle existe. |
DeleteIfExistsAsync()
Lance une opération asynchrone pour supprimer la table si elle existe.
public virtual System.Threading.Tasks.Task<bool> DeleteIfExistsAsync ();
abstract member DeleteIfExistsAsync : unit -> System.Threading.Tasks.Task<bool>
override this.DeleteIfExistsAsync : unit -> System.Threading.Tasks.Task<bool>
Public Overridable Function DeleteIfExistsAsync () As Task(Of Boolean)
Retours
Objet Task<TResult> de type bool
qui représente l’opération asynchrone.
S’applique à
DeleteIfExistsAsync(CancellationToken)
Lance une opération asynchrone pour supprimer la table si elle existe.
public virtual System.Threading.Tasks.Task<bool> DeleteIfExistsAsync (System.Threading.CancellationToken cancellationToken);
abstract member DeleteIfExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.DeleteIfExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function DeleteIfExistsAsync (cancellationToken As CancellationToken) As Task(Of Boolean)
Paramètres
- cancellationToken
- CancellationToken
CancellationToken à observer en attendant qu'une tâche se termine.
Retours
Objet Task<TResult> de type bool
qui représente l’opération asynchrone.
S’applique à
DeleteIfExistsAsync(TableRequestOptions, OperationContext)
Lance une opération asynchrone pour supprimer la table si elle existe.
public virtual System.Threading.Tasks.Task<bool> DeleteIfExistsAsync (Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext);
abstract member DeleteIfExistsAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> System.Threading.Tasks.Task<bool>
override this.DeleteIfExistsAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> System.Threading.Tasks.Task<bool>
Public Overridable Function DeleteIfExistsAsync (requestOptions As TableRequestOptions, operationContext As OperationContext) As Task(Of Boolean)
Paramètres
- requestOptions
- TableRequestOptions
Objet TableRequestOptions qui spécifie les options supplémentaires de la demande.
- operationContext
- OperationContext
Objet OperationContext qui représente le contexte de l'opération actuelle.
Retours
Objet Task<TResult> de type bool
qui représente l’opération asynchrone.
S’applique à
DeleteIfExistsAsync(TableRequestOptions, OperationContext, CancellationToken)
Lance une opération asynchrone pour supprimer la table si elle existe.
public virtual System.Threading.Tasks.Task<bool> DeleteIfExistsAsync (Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
abstract member DeleteIfExistsAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.DeleteIfExistsAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function DeleteIfExistsAsync (requestOptions As TableRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of Boolean)
Paramètres
- requestOptions
- TableRequestOptions
Objet TableRequestOptions qui spécifie les options supplémentaires de la demande.
- operationContext
- OperationContext
Objet OperationContext qui représente le contexte de l'opération actuelle.
- cancellationToken
- CancellationToken
CancellationToken à observer en attendant qu'une tâche se termine.
Retours
Objet Task<TResult> de type bool
qui représente l’opération asynchrone.
S’applique à
Azure SDK for .NET