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.AddOnPropertyChanged

Adds an event handler for the OnPropertyChanged event.

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

Parameters

handler
A PropertyChangedEventHandler delegate that represents the method that will handle the OnPropertyChanged event.

See Also

DataSet Class | DataSet Members | System.Data Namespace | RemoveOnPropertyChanged