MobileServiceClient.GetSyncTable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
abstract member GetSyncTable : string -> Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable
override this.GetSyncTable : string -> Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable
Public Function GetSyncTable (tableName As String) As IMobileServiceSyncTable
Parameters
- tableName
- String
The name of the table.
Returns
The table.
Implements
Applies to
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> ();
abstract member GetSyncTable : unit -> Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable<'T>
override this.GetSyncTable : unit -> Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable<'T>
Public Function GetSyncTable(Of T) () As IMobileServiceSyncTable(Of T)
Type Parameters
- T
The type of the instances in the table.
Returns
The table.
Implements
Applies to
Azure SDK for .NET