Files
2026-06-04 11:42:34 +02:00

16 lines
699 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// <summary>Represents the method that will handle the <see cref="E:System.Reflection.Assembly.ModuleResolve" /> event of an <see cref="T:System.Reflection.Assembly" />.</summary>
/// <returns>The module that resolves the request.</returns>
/// <param name="sender">The assembly that was the source of the event. </param>
/// <param name="e">The arguments supplied by the object describing the event. </param>
// Token: 0x020006D4 RID: 1748
// (Invoke) Token: 0x060041D8 RID: 16856
[ComVisible(true)]
[Serializable]
public delegate Module ModuleResolveEventHandler(object sender, ResolveEventArgs e);
}