Share via


MobileServiceClient.GetSyncTable Méthode

Définition

Surcharges

GetSyncTable(String)

Retournes une instance IMobileServiceSyncTable, qui fournit les opérations de données non typées pour cette table.

GetSyncTable<T>()

Retourne une IMobileServiceSyncTable<T> instance, qui fournit des opérations de données fortement typées pour la table locale.

GetSyncTable(String)

Retournes une instance IMobileServiceSyncTable, qui fournit les opérations de données non typées pour cette 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

Paramètres

tableName
String

Nom de la table.

Retours

Table.

Implémente

S’applique à

GetSyncTable<T>()

Retourne une IMobileServiceSyncTable<T> instance, qui fournit des opérations de données fortement typées pour la table locale.

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)

Paramètres de type

T

Type des instances dans la table.

Retours

Table.

Implémente

S’applique à