NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DataSet.GetChanges

Returns a copy of the DataSet containing all changes made to it since it was last loaded, or since AcceptChanges was called.

Overload List

Returns a copy of the DataSet that contains all changes made to it since it was loaded or AcceptChanges was last called.

[Visual Basic] Overloads Public Function GetChanges() As DataSet
[C#] public DataSet GetChanges();
[C++] public: DataSet* GetChanges();
[JScript] public function GetChanges() : DataSet;

Returns a copy of the DataSet containing all changes made to it since it was last loaded, or since AcceptChanges was called, filtered by DataRowState.

[Visual Basic] Overloads Public Function GetChanges(DataRowState) As DataSet
[C#] public DataSet GetChanges(DataRowState);
[C++] public: DataSet* GetChanges(DataRowState);
[JScript] public function GetChanges(DataRowState) : DataSet;

See Also

DataSet Class | DataSet Members | System.Data Namespace