CloudTable.ExistsAsync Méthode

Définition

Surcharges

ExistsAsync()

Lance une opération asynchrone pour déterminer si une table existe.

ExistsAsync(CancellationToken)

Lance une opération asynchrone pour déterminer si une table existe.

ExistsAsync(TableRequestOptions, OperationContext)

Lance une opération asynchrone pour déterminer si une table existe.

ExistsAsync(TableRequestOptions, OperationContext, CancellationToken)

Lance une opération asynchrone pour déterminer si une table existe.

ExistsAsync()

Lance une opération asynchrone pour déterminer si une table existe.

public virtual System.Threading.Tasks.Task<bool> ExistsAsync ();
abstract member ExistsAsync : unit -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : unit -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync () As Task(Of Boolean)

Retours

Objet Task<TResult> de type bool qui représente l’opération asynchrone.

S’applique à

ExistsAsync(CancellationToken)

Lance une opération asynchrone pour déterminer si une table existe.

public virtual System.Threading.Tasks.Task<bool> ExistsAsync (System.Threading.CancellationToken cancellationToken);
abstract member ExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync (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 à

ExistsAsync(TableRequestOptions, OperationContext)

Lance une opération asynchrone pour déterminer si une table existe.

public virtual System.Threading.Tasks.Task<bool> ExistsAsync (Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext);
abstract member ExistsAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync (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 à

ExistsAsync(TableRequestOptions, OperationContext, CancellationToken)

Lance une opération asynchrone pour déterminer si une table existe.

public virtual System.Threading.Tasks.Task<bool> ExistsAsync (Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
abstract member ExistsAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Overridable Function ExistsAsync (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 à