DbSyncTableProgress.DataTable Property

Gets or sets the DataTable object that contains the changes to be synchronized.

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

Syntax

'Declaration
Public Property DataTable As DataTable
    Get
    Set
'Usage
Dim instance As DbSyncTableProgress
Dim value As DataTable

value = instance.DataTable

instance.DataTable = value
public DataTable DataTable { get; set; }
public:
property DataTable^ DataTable {
    DataTable^ get ();
    void set (DataTable^ value);
}
member DataTable : DataTable with get, set
function get DataTable () : DataTable
function set DataTable (value : DataTable)

Property Value

Type: System.Data.DataTable
A DataTable object that contains the changes to be synchronized.

Remarks

If batching is enabled, accessing this property deserializes the batch file from disk. Any changes made to the tables are then persisted back to the batch file.

See Also

Reference

DbSyncTableProgress Class

Microsoft.Synchronization.Data Namespace