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: 0x02000168 RID: 360
|
|
[Token(Token = "0x2000168")]
|
|
[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: 0x06000EE5 RID: 3813 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000EE5")]
|
|
[Address(RVA = "0x26C4E20", Offset = "0x26C3C20", VA = "0x1826C4E20")]
|
|
public AssemblyLoadEventArgs(Assembly loadedAssembly)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000603 RID: 1539
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000603")]
|
|
private Assembly m_loadedAssembly;
|
|
}
|
|
}
|