This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Reflection;
using System.Runtime.InteropServices;
namespace System
{
/// <summary>Represents the method that handles the <see cref="E:System.AppDomain.TypeResolve" />, <see cref="E:System.AppDomain.ResourceResolve" />, and <see cref="E:System.AppDomain.AssemblyResolve" /> events of an <see cref="T:System.AppDomain" />.</summary>
/// <returns>The <see cref="T:System.Reflection.Assembly" /> that resolves the type, assembly, or resource; or null if the assembly cannot be resolved.</returns>
/// <param name="sender">The source of the event. </param>
/// <param name="args">A <see cref="T:System.ResolveEventArgs" /> that contains the event data. </param>
/// <filterpriority>2</filterpriority>
// Token: 0x020006EE RID: 1774
// (Invoke) Token: 0x06004240 RID: 16960
[ComVisible(true)]
[Serializable]
public delegate Assembly ResolveEventHandler(object sender, ResolveEventArgs args);
}