IMobileServiceTable.InsertAsync Méthode

Définition

Surcharges

InsertAsync(JObject)

Insère une instance dans la table.

InsertAsync(JObject, IDictionary<String,String>)

Insère une instance dans la table.

InsertAsync(JObject)

Insère une instance dans la table.

public System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken> InsertAsync (Newtonsoft.Json.Linq.JObject instance);
abstract member InsertAsync : Newtonsoft.Json.Linq.JObject -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>
Public Function InsertAsync (instance As JObject) As Task(Of JToken)

Paramètres

instance
Newtonsoft.Json.Linq.JObject

Instance à insérer dans la table.

Retours

Task<Newtonsoft.Json.Linq.JToken>

Tâche qui se termine lorsque l'insertion est terminée.

S’applique à

InsertAsync(JObject, IDictionary<String,String>)

Insère une instance dans la table.

public System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken> InsertAsync (Newtonsoft.Json.Linq.JObject instance, System.Collections.Generic.IDictionary<string,string> parameters);
abstract member InsertAsync : Newtonsoft.Json.Linq.JObject * System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task<Newtonsoft.Json.Linq.JToken>
Public Function InsertAsync (instance As JObject, parameters As IDictionary(Of String, String)) As Task(Of JToken)

Paramètres

instance
Newtonsoft.Json.Linq.JObject

Instance à insérer dans la table.

parameters
IDictionary<String,String>

Dictionnaires de paramètres et valeurs définis par l'utilisateur à inclure dans la chaîne de requête de l'URI de demande.

Retours

Task<Newtonsoft.Json.Linq.JToken>

Tâche qui se termine lorsque l'insertion est terminée.

S’applique à