CloudTable.ExistsAsync Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
ExistsAsync() |
Initiiert einen asynchronen Vorgang, um zu bestimmen, ob eine Tabelle vorhanden ist. |
ExistsAsync(CancellationToken) |
Initiiert einen asynchronen Vorgang, um zu bestimmen, ob eine Tabelle vorhanden ist. |
ExistsAsync(TableRequestOptions, OperationContext) |
Initiiert einen asynchronen Vorgang, um zu bestimmen, ob eine Tabelle vorhanden ist. |
ExistsAsync(TableRequestOptions, OperationContext, CancellationToken) |
Initiiert einen asynchronen Vorgang, um zu bestimmen, ob eine Tabelle vorhanden ist. |
ExistsAsync()
Initiiert einen asynchronen Vorgang, um zu bestimmen, ob eine Tabelle vorhanden ist.
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)
Gibt zurück
Ein Task<TResult>-Objekt vom Typ bool
, das den asynchronen Vorgang darstellt.
Gilt für:
ExistsAsync(CancellationToken)
Initiiert einen asynchronen Vorgang, um zu bestimmen, ob eine Tabelle vorhanden ist.
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)
Parameter
- cancellationToken
- CancellationToken
Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.
Gibt zurück
Ein Task<TResult>-Objekt vom Typ bool
, das den asynchronen Vorgang darstellt.
Gilt für:
ExistsAsync(TableRequestOptions, OperationContext)
Initiiert einen asynchronen Vorgang, um zu bestimmen, ob eine Tabelle vorhanden ist.
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)
Parameter
- requestOptions
- TableRequestOptions
Ein TableRequestOptions-Objekt, das zusätzliche Optionen für die Anforderung angibt.
- operationContext
- OperationContext
Ein OperationContext-Objekt, das den Kontext für den aktuellen Vorgang darstellt.
Gibt zurück
Ein Task<TResult>-Objekt vom Typ bool
, das den asynchronen Vorgang darstellt.
Gilt für:
ExistsAsync(TableRequestOptions, OperationContext, CancellationToken)
Initiiert einen asynchronen Vorgang, um zu bestimmen, ob eine Tabelle vorhanden ist.
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)
Parameter
- requestOptions
- TableRequestOptions
Ein TableRequestOptions-Objekt, das zusätzliche Optionen für die Anforderung angibt.
- operationContext
- OperationContext
Ein OperationContext-Objekt, das den Kontext für den aktuellen Vorgang darstellt.
- cancellationToken
- CancellationToken
Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.
Gibt zurück
Ein Task<TResult>-Objekt vom Typ bool
, das den asynchronen Vorgang darstellt.
Gilt für:
Azure SDK for .NET