This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
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;
}
}