using System;
using System.Reflection;
using System.Runtime.InteropServices;
namespace System
{
/// Provides data for the event.
/// 2
// Token: 0x0200063D RID: 1597
[ComVisible(true)]
public class AssemblyLoadEventArgs : EventArgs
{
/// Initializes a new instance of the class using the specified .
/// An instance that represents the currently loaded assembly.
// Token: 0x06003B36 RID: 15158 RVA: 0x000C9D6C File Offset: 0x000C7F6C
public AssemblyLoadEventArgs(Assembly loadedAssembly)
{
this.m_loadedAssembly = loadedAssembly;
}
/// Gets an that represents the currently loaded assembly.
/// An instance of that represents the currently loaded assembly.
/// 2
// Token: 0x17000B57 RID: 2903
// (get) Token: 0x06003B37 RID: 15159 RVA: 0x000C9D7C File Offset: 0x000C7F7C
public Assembly LoadedAssembly
{
get
{
return this.m_loadedAssembly;
}
}
// Token: 0x040017AB RID: 6059
private Assembly m_loadedAssembly;
}
}