Freigeben über


CloudTable.CreateAsync Methode

Definition

Überlädt

CreateAsync()

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

CreateAsync(CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

CreateAsync(TableRequestOptions, OperationContext)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

CreateAsync(TableRequestOptions, OperationContext, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

CreateAsync(Nullable<IndexingMode>, Nullable<Int32>, CancellationToken)
CreateAsync(Nullable<Int32>, IndexingMode, Nullable<Int32>, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

CreateAsync(Nullable<Int32>, String, Nullable<Int32>, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

CreateAsync(TableRequestOptions, OperationContext, Nullable<IndexingMode>, Nullable<Int32>, CancellationToken)
CreateAsync(TableRequestOptions, OperationContext, String, Nullable<Int32>, Nullable<Int32>, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

CreateAsync()

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

public virtual System.Threading.Tasks.Task CreateAsync ();
abstract member CreateAsync : unit -> System.Threading.Tasks.Task
override this.CreateAsync : unit -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync () As Task

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Gilt für:

CreateAsync(CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

public virtual System.Threading.Tasks.Task CreateAsync (System.Threading.CancellationToken cancellationToken);
abstract member CreateAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (cancellationToken As CancellationToken) As Task

Parameter

cancellationToken
CancellationToken

Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Gilt für:

CreateAsync(TableRequestOptions, OperationContext)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

public virtual System.Threading.Tasks.Task CreateAsync (Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext);
abstract member CreateAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> System.Threading.Tasks.Task
override this.CreateAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (requestOptions As TableRequestOptions, operationContext As OperationContext) As Task

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-Objekt, das den asynchronen Vorgang darstellt.

Gilt für:

CreateAsync(TableRequestOptions, OperationContext, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

public virtual System.Threading.Tasks.Task CreateAsync (Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
abstract member CreateAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (requestOptions As TableRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task

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-Objekt, das den asynchronen Vorgang darstellt.

Gilt für:

CreateAsync(Nullable<IndexingMode>, Nullable<Int32>, CancellationToken)

public virtual System.Threading.Tasks.Task CreateAsync (Microsoft.Azure.Cosmos.IndexingMode? indexingMode, int? throughput, System.Threading.CancellationToken cancellationToken);
abstract member CreateAsync : Nullable<Microsoft.Azure.Cosmos.IndexingMode> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : Nullable<Microsoft.Azure.Cosmos.IndexingMode> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (indexingMode As Nullable(Of IndexingMode), throughput As Nullable(Of Integer), cancellationToken As CancellationToken) As Task

Parameter

indexingMode
Nullable<IndexingMode>
throughput
Nullable<Int32>
cancellationToken
CancellationToken

Gibt zurück

Gilt für:

CreateAsync(Nullable<Int32>, IndexingMode, Nullable<Int32>, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

public virtual System.Threading.Tasks.Task CreateAsync (int? throughput, Microsoft.Azure.Cosmos.IndexingMode indexingMode, int? defaultTimeToLive, System.Threading.CancellationToken cancellationToken);
abstract member CreateAsync : Nullable<int> * Microsoft.Azure.Cosmos.IndexingMode * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : Nullable<int> * Microsoft.Azure.Cosmos.IndexingMode * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (throughput As Nullable(Of Integer), indexingMode As IndexingMode, defaultTimeToLive As Nullable(Of Integer), cancellationToken As CancellationToken) As Task

Parameter

throughput
Nullable<Int32>

CosmosDB-Tabellendurchsatz.

indexingMode
IndexingMode

Angeben des Indizierungsmodus für CosmosDB-Tabelle

defaultTimeToLive
Nullable<Int32>

CosmosDB-Tabellenzeit in Sekunden. Null bedeutet, dass TTL deaktiviert ist, -1 gleich TTL ist aktiviert und Zeilen unbegrenzt beibehalten werden, jeder andere Wert legt TTL fest.

cancellationToken
CancellationToken

Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Gilt für:

CreateAsync(Nullable<Int32>, String, Nullable<Int32>, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

public virtual System.Threading.Tasks.Task CreateAsync (int? throughput, string serializedIndexingPolicy, int? defaultTimeToLive, System.Threading.CancellationToken cancellationToken);
abstract member CreateAsync : Nullable<int> * string * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : Nullable<int> * string * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (throughput As Nullable(Of Integer), serializedIndexingPolicy As String, defaultTimeToLive As Nullable(Of Integer), cancellationToken As CancellationToken) As Task

Parameter

throughput
Nullable<Int32>

CosmosDB-Tabellendurchsatz.

serializedIndexingPolicy
String

CosmosDB-Tabellenindizierungsrichtlinie.

defaultTimeToLive
Nullable<Int32>

CosmosDB-Tabellenzeit in Sekunden. Null bedeutet, dass TTL deaktiviert ist, -1 gleich TTL ist aktiviert und Zeilen unbegrenzt beibehalten werden, jeder andere Wert legt TTL fest.

cancellationToken
CancellationToken

Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Gilt für:

CreateAsync(TableRequestOptions, OperationContext, Nullable<IndexingMode>, Nullable<Int32>, CancellationToken)

public virtual System.Threading.Tasks.Task CreateAsync (Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext, Microsoft.Azure.Cosmos.IndexingMode? indexingMode, int? throughput, System.Threading.CancellationToken cancellationToken);
abstract member CreateAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * Nullable<Microsoft.Azure.Cosmos.IndexingMode> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * Nullable<Microsoft.Azure.Cosmos.IndexingMode> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (requestOptions As TableRequestOptions, operationContext As OperationContext, indexingMode As Nullable(Of IndexingMode), throughput As Nullable(Of Integer), cancellationToken As CancellationToken) As Task

Parameter

requestOptions
TableRequestOptions
operationContext
OperationContext
indexingMode
Nullable<IndexingMode>
throughput
Nullable<Int32>
cancellationToken
CancellationToken

Gibt zurück

Gilt für:

CreateAsync(TableRequestOptions, OperationContext, String, Nullable<Int32>, Nullable<Int32>, CancellationToken)

Initiiert einen asynchronen Vorgang zum Erstellen einer Tabelle.

public virtual System.Threading.Tasks.Task CreateAsync (Microsoft.Azure.Cosmos.Table.TableRequestOptions requestOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext, string serializedIndexingPolicy, int? throughput, int? defaultTimeToLive, System.Threading.CancellationToken cancellationToken);
abstract member CreateAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * string * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : Microsoft.Azure.Cosmos.Table.TableRequestOptions * Microsoft.Azure.Cosmos.Table.OperationContext * string * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CreateAsync (requestOptions As TableRequestOptions, operationContext As OperationContext, serializedIndexingPolicy As String, throughput As Nullable(Of Integer), defaultTimeToLive As Nullable(Of Integer), cancellationToken As CancellationToken) As Task

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.

serializedIndexingPolicy
String

CosmosDB-Tabellenindizierungsrichtlinie.

throughput
Nullable<Int32>

CosmosDB-Tabellendurchsatz.

defaultTimeToLive
Nullable<Int32>

CosmosDB-Tabellenzeit in Sekunden. Null bedeutet, dass TTL deaktiviert ist, -1 gleich TTL ist aktiviert und Zeilen unbegrenzt beibehalten werden, jeder andere Wert legt TTL fest.

cancellationToken
CancellationToken

Ein CancellationToken, das beim Warten auf den Abschluss einer Aufgabe überwacht werden soll.

Gibt zurück

Ein Task-Objekt, das den asynchronen Vorgang darstellt.

Gilt für: