IMobileServiceTable<T>.RefreshAsync Method

Definition

Overloads

RefreshAsync(T, IDictionary<String,String>)

Refresh the current instance with the latest values from the table.

RefreshAsync(T)

Refresh the current instance with the latest values from the table.

RefreshAsync(T, IDictionary<String,String>)

Refresh the current instance with the latest values from the table.

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

Parameters

instance
T

The instance to refresh.

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 refresh has finished.

Applies to

RefreshAsync(T)

Refresh the current instance with the latest values from the table.

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

Parameters

instance
T

The instance to refresh.

Returns

A task that will complete when the refresh has finished.

Applies to