Método SetTableSentAnchor
Define um objeto SyncAnchor que contém a hora em que a última alteração foi enviada do cliente.
Namespace: Microsoft.Synchronization.Data.SqlServerCe
Assembly: Microsoft.Synchronization.Data.SqlServerCe (em Microsoft.Synchronization.Data.SqlServerCe.dll)
Sintaxe
'Declaração
Public Overrides Sub SetTableSentAnchor ( _
tableName As String, _
anchor As SyncAnchor _
)
'Uso
Dim instance As SqlCeClientSyncProvider
Dim tableName As String
Dim anchor As SyncAnchor
instance.SetTableSentAnchor(tableName, _
anchor)
public override void SetTableSentAnchor(
string tableName,
SyncAnchor anchor
)
public:
virtual void SetTableSentAnchor(
String^ tableName,
SyncAnchor^ anchor
) override
abstract SetTableSentAnchor :
tableName:string *
anchor:SyncAnchor -> unit
override SetTableSentAnchor :
tableName:string *
anchor:SyncAnchor -> unit
public override function SetTableSentAnchor(
tableName : String,
anchor : SyncAnchor
)
Parâmetros
- tableName
Tipo: System. . :: . .String
O nome da tabela.
- anchor
Tipo: Microsoft.Synchronization.Data. . :: . .SyncAnchor
Um objeto SyncAnchor, com o valor de âncora a ser mantido.
Exceções
Exceção | Condição |
---|---|
DataSyncException | Outra transação está em andamento. |
ArgumentNullException | tableName ou anchor é um null Nothing nullptr unit uma referência nula (Nothing no Visual Basic) . |
MetadataException | Não foi possível definir a âncora da tabela. |
ArgumentException | Não há nenhuma tabela com o nome tableName. |
Comentários
Este método é usado pela infraestrutura de controle de alterações no banco de dados cliente.
Consulte também
Referência
SqlCeClientSyncProvider Classe