Share via


DataConnectionProperties.OnPropertyChanged Method

Raises the PropertyChanged event.

Namespace:  Microsoft.VisualStudio.Data.Framework
Assembly:  Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)

Syntax

'Declaration
Protected Overridable Sub OnPropertyChanged ( _
    e As PropertyChangedEventArgs _
)
protected virtual void OnPropertyChanged(
    PropertyChangedEventArgs e
)
protected:
virtual void OnPropertyChanged(
    PropertyChangedEventArgs^ e
)
abstract OnPropertyChanged : 
        e:PropertyChangedEventArgs -> unit  
override OnPropertyChanged : 
        e:PropertyChangedEventArgs -> unit
protected function OnPropertyChanged(
    e : PropertyChangedEventArgs
)

Parameters

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

See Also

Reference

DataConnectionProperties Class

Microsoft.VisualStudio.Data.Framework Namespace