AssemblyObsoleteEventHandler Delegate

 

An event that gets raised when an assembly has become obsolete. This delegate cannot be inherited.

Namespace:   Microsoft.VisualStudio.Shell.Design
Assembly:  Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)

public delegate void AssemblyObsoleteEventHandler(
	object sender,
	AssemblyObsoleteEventArgs e
)

Parameters

sender
Type: System.Object

Object that raised the event.

args

AssemblyObsoleteEventArgs 

specific to the event that is being handled.

The AssemblyObsolete event is raised when a type resolution service calls the OnAssemblyObsolete. The type resolution service should do this when it detects that an assembly it loaded is no longer valid. This can happen if the assembly is rebuilt by a developer.

Return to top
Show: