AssemblyLoadEventHandler Delegate
.NET Framework 3.0
Represents the method that handles the AssemblyLoad event of an AppDomain.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
[SerializableAttribute] [ComVisibleAttribute(true)] public delegate void AssemblyLoadEventHandler ( Object^ sender, AssemblyLoadEventArgs^ args )
/** @delegate */ /** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public delegate void AssemblyLoadEventHandler ( Object sender, AssemblyLoadEventArgs args )
Not applicable.
Parameters
- sender
The source of the event.
- args
An AssemblyLoadEventArgs that contains the event data.
An AssemblyLoadEventHandler is used to specify the methods that are invoked in response to an AssemblyLoad event. To associate an instance of AssemblyLoadEventHandler with an event, add the instance to the event. The methods referenced by the AssemblyLoadEventHandler are invoked whenever an assembly is loaded, until the AssemblyLoadEventHandler is removed from the event.
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: