DataConnectionProperties.OnPropertyChanged Method
Raises the PropertyChanged event.
Namespace: Microsoft.VisualStudio.Data
Assembly: Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Protected Overridable Sub OnPropertyChanged ( _
e As DataConnectionPropertyChangedEventArgs _
)
protected virtual void OnPropertyChanged(
DataConnectionPropertyChangedEventArgs e
)
protected:
virtual void OnPropertyChanged(
DataConnectionPropertyChangedEventArgs^ e
)
abstract OnPropertyChanged :
e:DataConnectionPropertyChangedEventArgs -> unit
override OnPropertyChanged :
e:DataConnectionPropertyChangedEventArgs -> unit
protected function OnPropertyChanged(
e : DataConnectionPropertyChangedEventArgs
)
Parameters
e
Type: Microsoft.VisualStudio.Data.DataConnectionPropertyChangedEventArgsA DataConnectionPropertyChangedEventArgs that contains the event data.
Remarks
The OnPropertyChanged method allows derived classes to handle the PropertyChanged event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.