hostingEnvironment Element (ASP.NET Settings Schema)
Defines configuration settings that control the behavior of the application hosting environment.
system.web Element (ASP.NET Settings Schema)
hostingEnvironment Element (ASP.NET Settings Schema)
<hostingEnvironment
idleTimeout="HH:MM:SS"
shadowCopyBinAssemblies="true|false"
shutdownTimeout="number"
urlMetadataSlidingExpiration="HH:MM:SS"
/>
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute | Description |
|---|---|
idleTimeout | Optional TimeSpan attribute. Sets the amount of time, in the format HH:MM:SS or "Infinite", before an inactive application is unloaded. The default is "Infinite". |
shadowCopyBinAssemblies | Optional Boolean attribute. Sets a Boolean value indicating whether the assemblies of an application in the Bin directory are shadow copied to the application's ASP.NET Temporary Files directory. Default is true. |
shutdownTimeout | Optional TimeSpan attribute. Sets the amount of time, in seconds, to gracefully shut down the application. For more information, see ShutdownTimeout. Default is 30. |
urlMetadataSlidingExpiration | Optional TimeSpan attribute. Determines how ASP.NET caches URL metadata. The format is HH:MM:SS or "Infinite". The values "00:00:00" and "Infinite" have special meanings. For more information, see UrlMetadataSlidingExpiration. Default is 1 minute. |
Child Elements
None.
Parent Elements
Element | Description |
|---|---|
configuration | The required root element in every configuration file used by the common language runtime and .NET Framework applications. |
system.web | Specifies the root element for the ASP.NET configuration settings in a configuration file. Contains configuration elements that configure ASP.NET Web applications and control how the applications behave. |
Default Configuration
The following default hostingEnvironment element is not explicitly configured in the machine configuration file or in the root Web.config file, but is the default configuration returned by an application in the .NET Framework version 2.0.
Note |
|---|
The value "Infinite" is defined by the system to be MaxValue. |
<hostingEnvironment
idleTimeout="Infinite"
shutdownTimeout="30"
shadowCopyBinAssemblies="true" />
Note