public class AssemblyLoadEventArgs : EventArgs
Object
EventArgs
AssemblyLoadEventArgs
mscorlib
RuntimeInfrastructure
Provides access to the Assembly that was loaded causing a System.AppDomain.AssemblyLoad event.
[Note: This class provides the loaded assembly via the System.AssemblyLoadEventArgs.LoadedAssembly property.]
System Namespace
AssemblyLoadEventArgs Constructors
AssemblyLoadEventArgs Constructor
AssemblyLoadEventArgs Properties
public AssemblyLoadEventArgs(Assembly loadedAssembly);
Constructs and initializes a new instance of the AssemblyLoadEventArgs class.
- loadedAssembly
- A Assembly representing the loaded assembly.
The System.AssemblyLoadEventArgs.LoadedAssembly property is initialized using loadedAssembly.
System.AssemblyLoadEventArgs Class, System Namespace
public Assembly LoadedAssembly { get; }
Gets a Assembly instance that represents the assembly for which anAssemblyLoad
event was raised.
A Assembly representing the assembly that has been loaded.
This property is read-only.[Note: The value of this property is set by the system when it raises a System.AppDomain.AssemblyLoad event.]
System.AssemblyLoadEventArgs Class, System Namespace