You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 3, 2021. It is now read-only.
/// Represents a method that handles the <see cref="AppDomain.TypeResolve"/>, <see cref="AppDomain.ResourceResolve"/>, or <see cref="AppDomain.AssemblyResolve"/> event of an <see cref="AppDomain"/>.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="args">The event data.</param>
/// <returns>The assembly that resolves the type, assembly, or resource; or <see langword="null"/> if the assembly cannot be resolved.</returns>
/// <remarks>If the runtime class loader cannot resolve a reference to an assembly, type, or resource, the corresponding events are raised to give the callback a chance to tell the runtime which assembly the referenced assembly, type, or resource is in. It is the responsibility of the ResolveEventHandler to return the assembly that resolves the type, assembly, or resource, or to return null if the assembly is not recognized.</remarks>
/// <seealso cref="AppDomain.ResourceResolve"/>
/// <seealso cref="AppDomain.AssemblyResolve"/>
/// <seealso cref="AppDomain.TypeResolve"/>
public delegate Assembly ResolveEventHandler(object sender, ResolveEventArgs args);