Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/AssemblyLoadEventHandler.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

17 lines
655 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents the method that handles the <see cref="E:System.AppDomain.AssemblyLoad" /> event of an <see cref="T:System.AppDomain" />.</summary>
/// <param name="sender">The source of the event.</param>
/// <param name="args">An <see cref="T:System.AssemblyLoadEventArgs" /> that contains the event data.</param>
// Token: 0x02000170 RID: 368
// (Invoke) Token: 0x06000F1D RID: 3869
[Token(Token = "0x2000170")]
[ComVisible(true)]
[Serializable]
public delegate void AssemblyLoadEventHandler(object sender, AssemblyLoadEventArgs args);
}