Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Alerts listeners that the document has been reloaded.
Namespace: Microsoft.VisualStudio.Modeling.Shell
Assembly: Microsoft.VisualStudio.Modeling.Sdk.Shell.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.Shell.11.0.dll)
Syntax
'Declaration
Protected Overridable Sub OnDocumentReloaded ( _
e As EventArgs _
)
protected virtual void OnDocumentReloaded(
EventArgs e
)
protected:
virtual void OnDocumentReloaded(
EventArgs^ e
)
abstract OnDocumentReloaded :
e:EventArgs -> unit
override OnDocumentReloaded :
e:EventArgs -> unit
protected function OnDocumentReloaded(
e : EventArgs
)
Parameters
e
Type: EventArgsAn EventArgs object.
Remarks
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
The OnDocumentReloaded method also allows derived classes to handle the event without attaching a delegate. This technique is recommended for handling the event in a derived class.
Notes to Inheritors
When you override OnDocumentReloaded in a derived class, be sure to call the base class’s OnDocumentReloaded 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.