This documentation is archived and is not being maintained.
AssemblyLoadEventHandler Delegate
Visual Studio 2010
Represents the method that handles the AssemblyLoad event of an AppDomain.
Assembly: mscorlib (in mscorlib.dll)
[SerializableAttribute] [ComVisibleAttribute(true)] public delegate void AssemblyLoadEventHandler( Object^ sender, AssemblyLoadEventArgs^ args )
Parameters
- sender
- Type: System::Object
The source of the event.
- args
- Type: System::AssemblyLoadEventArgs
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 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: