This documentation is archived and is not being maintained.
AppDomain Events
Visual Studio 2010
The AppDomain type exposes the following members.
| Name | Description | |
|---|---|---|
|
AssemblyLoad | Occurs when an assembly is loaded. |
|
AssemblyResolve | Occurs when the resolution of an assembly fails. |
|
DomainUnload | Occurs when an AppDomain is about to be unloaded. |
|
FirstChanceException | Occurs when an exception is thrown in managed code, before the runtime searches the call stack for an exception handler in the application domain. |
|
ProcessExit | Occurs when the default application domain's parent process exits. |
|
ReflectionOnlyAssemblyResolve | Occurs when the resolution of an assembly fails in the reflection-only context. |
|
ResourceResolve | Occurs when the resolution of a resource fails because the resource is not a valid linked or embedded resource in the assembly. |
|
TypeResolve | Occurs when the resolution of a type fails. |
|
UnhandledException | Occurs when an exception is not caught. |
Show: