ApplicationShutdownReason Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies why the AppDomain class shut down.
public enum class ApplicationShutdownReason
public enum ApplicationShutdownReason
type ApplicationShutdownReason =
Public Enum ApplicationShutdownReason
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | No shutdown reason was provided. |
HostingEnvironment | 1 | The hosting environment shut down the application domain. |
ChangeInGlobalAsax | 2 | A change was made to the Global.asax file. |
ConfigurationChange | 3 | A change was made to the application-level configuration file. |
UnloadAppDomainCalled | 4 | A call was made to UnloadAppDomain(). |
ChangeInSecurityPolicyFile | 5 | A change was made in the code access security policy file. |
BinDirChangeOrDirectoryRename | 6 | A change was made to the Bin folder or to files in it. |
BrowsersDirChangeOrDirectoryRename | 7 | A change was made to the App_Browsers folder or to files in it. |
CodeDirChangeOrDirectoryRename | 8 | A change was made to the App_Code folder or to files in it. |
ResourcesDirChangeOrDirectoryRename | 9 | A change was made to the App_GlobalResources folder or to files in it. |
IdleTimeout | 10 | The maximum idle time limit was reached. |
PhysicalApplicationPathChanged | 11 | A change was made to the physical path of the application. |
HttpRuntimeClose | 12 | A call was made to Close(). |
InitializationError | 13 | An AppDomain initialization error occurred. |
MaxRecompilationsReached | 14 | The maximum number of dynamic recompiles of resources was reached. |
BuildManagerChange | 15 | The compilation system shut the application domain. The BuildManagerChange member is introduced in the .NET Framework version 3.5. For more information, see .NET Framework Versions and Dependencies. |
Remarks
The ApplicationShutdownReason represents the possible values for the ShutdownReason property of the HostingEnvironment class.