mscorlib(4.0.0.0) API with additions
AssemblyLoadEventArgs.cs
1 using System.Reflection;
3 
4 namespace System
5 {
7  [ComVisible(true)]
9  {
10  private Assembly _LoadedAssembly;
11 
14  public Assembly LoadedAssembly => _LoadedAssembly;
15 
18  public AssemblyLoadEventArgs(Assembly loadedAssembly)
19  {
20  _LoadedAssembly = loadedAssembly;
21  }
22  }
23 }
Definition: __Canon.cs:3
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: EventArgs.cs:9
Provides data for the E:System.AppDomain.AssemblyLoad event.
Assembly LoadedAssembly
Gets an T:System.Reflection.Assembly that represents the currently loaded assembly.
Represents an assembly, which is a reusable, versionable, and self-describing building block of a com...
Definition: Assembly.cs:22
AssemblyLoadEventArgs(Assembly loadedAssembly)
Initializes a new instance of the T:System.AssemblyLoadEventArgs class using the specified T:System....