IMobileServiceTable<T>.UpdateAsync Method

Definition

Overloads

UpdateAsync(T)

Updates an instance in the table.

UpdateAsync(T, IDictionary<String,String>)

Updates an instance in the table.

UpdateAsync(T)

Updates an instance in the table.

public System.Threading.Tasks.Task UpdateAsync (T instance);
abstract member UpdateAsync : 'T -> System.Threading.Tasks.Task
Public Function UpdateAsync (instance As T) As Task

Parameters

instance
T

The instance to update.

Returns

A task that will complete when the update has finished.

Applies to

UpdateAsync(T, IDictionary<String,String>)

Updates an instance in the table.

public System.Threading.Tasks.Task UpdateAsync (T instance, System.Collections.Generic.IDictionary<string,string> parameters);
abstract member UpdateAsync : 'T * System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task
Public Function UpdateAsync (instance As T, parameters As IDictionary(Of String, String)) As Task

Parameters

instance
T

The instance to update.

parameters
IDictionary<String,String>

A dictionary of user-defined parameters and values to include in the request URI query string.

Returns

A task that will complete when the update has finished.

Applies to