AssemblyDeletedEventHandler Delegate
The delegate for the AssemblyDeletedEvent that is raised when an assembly has been deleted.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Public Delegate Sub AssemblyDeletedEventHandler ( _
sender As Object, _
args As AssemblyDeletedEventArgs _
)
'Usage
Dim instance As New AssemblyDeletedEventHandler(AddressOf HandlerMethod)
public delegate void AssemblyDeletedEventHandler(
Object sender,
AssemblyDeletedEventArgs args
)
public delegate void AssemblyDeletedEventHandler(
Object^ sender,
AssemblyDeletedEventArgs^ args
)
JScript does not support delegates.
Parameters
sender
Type: System.ObjectObject that raised the event.
args
Type: Microsoft.VisualStudio.Shell.Design.AssemblyDeletedEventArgsspecific to the event that is being handled.
Remarks
The AssemblyDeleted event is raised when a type resolution service calls the OnAssemblyDeleted. The type resolution service should do this when it detects that an assembly it loaded no longer exists.