TableServiceClient.CreateTableIfNotExistsAsync 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.
Crée une table sur le service.
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Data.Tables.Models.TableItem>> CreateTableIfNotExistsAsync (string tableName, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateTableIfNotExistsAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Data.Tables.Models.TableItem>>
override this.CreateTableIfNotExistsAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Data.Tables.Models.TableItem>>
Public Overridable Function CreateTableIfNotExistsAsync (tableName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of TableItem))
Paramètres
- tableName
- String
Nom de la table à créer.
- cancellationToken
- CancellationToken
CancellationToken Contrôle de la durée de vie de la requête.
Retours
Si la table n’existe pas encore, un Response<T>. Si la table existe déjà, null
.