MobileServiceClient.GetSyncTable
Method
Definition
Overloads
| GetSyncTable(String) |
Returns a IMobileServiceSyncTable instance, which provides untyped data operations for that table. |
| GetSyncTable<T>() |
Returns a IMobileServiceSyncTable<T> instance, which provides strongly typed data operations for local table. |
GetSyncTable(String)
Returns a IMobileServiceSyncTable instance, which provides untyped data operations for that table.
public Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable GetSyncTable (string tableName);
Parameters
- tableName
- String
The name of the table.
Returns
The table.
GetSyncTable<T>()
Returns a IMobileServiceSyncTable<T> instance, which provides strongly typed data operations for local table.
public Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable<T> GetSyncTable<T> ();
Type Parameters
- T
The type of the instances in the table.
Returns
The table.