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

Raises the OnPropertyChanged event.

[Visual Basic]
Overridable Protected Sub OnPropertyChanged( _
   ByVal pcevent As PropertyChangedEventArgs _
)
[C#]
protected virtual void OnPropertyChanged(
   PropertyChangedEventArgs pcevent
);
[C++]
protected: virtual void OnPropertyChanged(
   PropertyChangedEventArgs* pcevent
);
[JScript]
protected function OnPropertyChanged(
   pcevent : PropertyChangedEventArgs
);

Parameters

pcevent
A PropertyChangedEventArgs that contains the event data.

Remarks

Raising an event invokes the event-handling method through a delegate. For an overview, see TBD.

Notes to Inheritors: When overriding OnPropertyChanged in a derived class, be sure to call the base class's OnPropertyChanged method.

See Also

DataTable Class | DataTable Members | System.Data Namespace | AddOnPropertyChanged | RemoveOnPropertyChanged