System.AssemblyLoadEventArgs Class

public class AssemblyLoadEventArgs : EventArgs

Base Types

Object
  EventArgs
    AssemblyLoadEventArgs

Assembly

mscorlib

Library

RuntimeInfrastructure

Summary

Provides access to the Assembly that was loaded causing a System.AppDomain.AssemblyLoad event.

Description

[Note: This class provides the loaded assembly via the System.AssemblyLoadEventArgs.LoadedAssembly property.]

See Also

System Namespace

Members

AssemblyLoadEventArgs Constructors

AssemblyLoadEventArgs Constructor

AssemblyLoadEventArgs Properties

AssemblyLoadEventArgs.LoadedAssembly Property


AssemblyLoadEventArgs Constructor

public AssemblyLoadEventArgs(Assembly loadedAssembly);

Summary

Constructs and initializes a new instance of the AssemblyLoadEventArgs class.

Parameters

loadedAssembly
A Assembly representing the loaded assembly.

Description

The System.AssemblyLoadEventArgs.LoadedAssembly property is initialized using loadedAssembly.

See Also

System.AssemblyLoadEventArgs Class, System Namespace

AssemblyLoadEventArgs.LoadedAssembly Property

public Assembly LoadedAssembly { get; }

Summary

Gets a Assembly instance that represents the assembly for which an AssemblyLoad event was raised.

Property Value

A Assembly representing the assembly that has been loaded.

Description

This property is read-only.

[Note: The value of this property is set by the system when it raises a System.AppDomain.AssemblyLoad event.]

See Also

System.AssemblyLoadEventArgs Class, System Namespace