AppDomain Events
AssemblyLoad Occurs when an assembly is loaded.
AssemblyResolve Occurs when an assembly resolution fails.
DomainUnload Occurs when an AppDomain is about to be unloaded.
ProcessExit Occurs on the default AppDomain when the parent process exits.
ResourceResolve Occurs when a resource resolution fails.
TypeResolve Occurs when a type resolution fails.
UnhandledException Occurs when an exception is not caught by an event handler.

Table 1: Events exposed by the AppDomain class.

Back to Article