Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Raises the Changed event.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Protected Overridable Sub OnChanged ( _
e As EventArgs _
)
protected virtual void OnChanged(
EventArgs e
)
protected:
virtual void OnChanged(
EventArgs^ e
)
abstract OnChanged :
e:EventArgs -> unit
override OnChanged :
e:EventArgs -> unit
protected function OnChanged(
e : EventArgs
)
Parameters
- e
Type: System.EventArgs
An EventArgs that contains the event data.
Remarks
The OnChanged method is called by the PerformChange method after it has made a modification to the current type.
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
The OnChanged method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors
When overriding OnChanged in a derived class, be sure to call the base class’s OnChanged method so that registered delegates receive the event.
.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.