August 2003
Intermediate to advanced
928 pages
32h 1m
English
ResolveEventHandler
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(objectsender, ResolveEventArgsargs);
AppDomain.{AssemblyResolve( ),
ResourceResolve( ), TypeResolve( )}