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!

DataTable.AddOnRowChanged

Adds an event handler for the RowChanged event.

[Visual Basic]
Public Sub AddOnRowChanged( _
   ByVal handler As DataRowChangeEventHandler _
)
[C#]
public void AddOnRowChanged(
   DataRowChangeEventHandler handler
);
[C++]
public: void AddOnRowChanged(
   DataRowChangeEventHandler* handler
);
[JScript]
public function AddOnRowChanged(
   handler : DataRowChangeEventHandler
);

Parameters

handler
A DataRowChangeEventHandler delegate that represents the method that will handle the RowChanged event.

See Also

DataTable Class | DataTable Members | System.Data Namespace | RemoveOnRowChanged