16 lines
647 B
C#
16 lines
647 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
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>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x020006E6 RID: 1766
|
|
// (Invoke) Token: 0x06004220 RID: 16928
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public delegate void AssemblyLoadEventHandler(object sender, AssemblyLoadEventArgs args);
|
|
}
|