Name

ResolveEventHandler

Synopsis

This delegate defines the event handler that can be created to respond to AppDomain.TypeResolve, AppDomain.ResourceResolve, and AppDomain.AssemblyResolve events. These events are raised when the runtime cannot find a type, assembly, or resource. Use this delegate to catch that event, then find and return the assembly that contains the missing type, resource, or assembly.

public delegate Assembly ResolveEventHandler(object sender, 
        ResolveEventArgs args);  

Associated Events

AppDomain.{AssemblyResolve(), ResourceResolve(), TypeResolve()}

Get C# in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.