29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Provides data for the <see cref="E:System.AppDomain.AssemblyLoad" /> event.</summary>
|
|
// Token: 0x0200016F RID: 367
|
|
[Token(Token = "0x200016F")]
|
|
[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: 0x06000F1B RID: 3867 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000F1B")]
|
|
[Address(RVA = "0x2D08AF0", Offset = "0x2D07AF0", VA = "0x182D08AF0")]
|
|
public AssemblyLoadEventArgs(Assembly loadedAssembly)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0400060D RID: 1549
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400060D")]
|
|
private Assembly m_loadedAssembly;
|
|
}
|
|
}
|