38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Provides data for the <see cref="E:System.AppDomain.AssemblyLoad" /> event.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x0200063D RID: 1597
|
|
[ComVisible(true)]
|
|
public class AssemblyLoadEventArgs : EventArgs
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.AssemblyLoadEventArgs" /> class using the specified <see cref="T:System.Reflection.Assembly" />.</summary>
|
|
/// <param name="loadedAssembly">An instance that represents the currently loaded assembly. </param>
|
|
// Token: 0x06003B36 RID: 15158 RVA: 0x000C9D6C File Offset: 0x000C7F6C
|
|
public AssemblyLoadEventArgs(Assembly loadedAssembly)
|
|
{
|
|
this.m_loadedAssembly = loadedAssembly;
|
|
}
|
|
|
|
/// <summary>Gets an <see cref="T:System.Reflection.Assembly" /> that represents the currently loaded assembly.</summary>
|
|
/// <returns>An instance of <see cref="T:System.Reflection.Assembly" /> that represents the currently loaded assembly.</returns>
|
|
/// <filterpriority>2</filterpriority>
|
|
// 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;
|
|
}
|
|
}
|