DbSyncContext.DataSet Property
Gets or sets a DataSet object that contains the selected rows from the peer database.
Namespace: Microsoft.Synchronization.Data
Assembly: Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)
Syntax
'Declaration
Public Property DataSet As DataSet
Get
Set
'Usage
Dim instance As DbSyncContext
Dim value As DataSet
value = instance.DataSet
instance.DataSet = value
public DataSet DataSet { get; set; }
public:
property DataSet^ DataSet {
DataSet^ get ();
void set (DataSet^ value);
}
member DataSet : DataSet with get, set
function get DataSet () : DataSet
function set DataSet (value : DataSet)
Property Value
Type: System.Data.DataSet
A DataSet object that contains the selected rows from the peer database. Returns null if IsDataBatched is true.