AssemblyObsoleteEventHandler Delegate
Visual Studio 2015
An event that gets raised when an assembly has become obsolete. This delegate cannot be inherited.
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
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.
Show: