AssemblyLoadEventArgs | ECMA 1.0 |
System (mscorlib.dll) | class |
This class is used by the .NET Framework
to pass information to the
AppDomain.AssemblyLoad event. This information
consists of a System.Reflection.Assembly object
that represents the newly loaded assembly.
public class AssemblyLoadEventArgs : EventArgs {
// Public Constructors
public AssemblyLoadEventArgs(System.Reflection.Assembly loadedAssembly);
// Public Instance Properties
public Assembly LoadedAssembly{get; }
}
Hierarchy
Object
EventArgs
AssemblyLoadEventArgs
Passed To
AssemblyLoadEventHandler.{BeginInvoke( ),
Invoke( )}
|