CompilationSection.NumRecompilesBeforeAppRestart Property
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.
Gets or sets the number of dynamic recompiles of resources that can occur before the application restarts.
public:
property int NumRecompilesBeforeAppRestart { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("numRecompilesBeforeAppRestart", DefaultValue=15)]
public int NumRecompilesBeforeAppRestart { get; set; }
[<System.Configuration.ConfigurationProperty("numRecompilesBeforeAppRestart", DefaultValue=15)>]
member this.NumRecompilesBeforeAppRestart : int with get, set
Public Property NumRecompilesBeforeAppRestart As Integer
Property Value
A value indicating the number of dynamic recompiles of resources that can occur before the application restarts. The default is 15 recompilations.
- Attributes
Examples
The following code example demonstrates how to use the NumRecompilesBeforeAppRestart property. This code example is part of a larger example provided for the CompilationSection class.
// Display NumRecompilesBeforeAppRestart property.
Console.WriteLine("NumRecompilesBeforeAppRestart: {0}",
configSection.NumRecompilesBeforeAppRestart);
// Set NumRecompilesBeforeAppRestart property.
configSection.NumRecompilesBeforeAppRestart = 15;
' Display NumRecompilesBeforeAppRestart property.
Console.WriteLine("NumRecompilesBeforeAppRestart: {0}", _
configSection.NumRecompilesBeforeAppRestart)
' Set NumRecompilesBeforeAppRestart property.
configSection.NumRecompilesBeforeAppRestart = 15
Remarks
Indicates the number of dynamic recompiles of resources that can occur before the application restarts. This attribute is supported at the global and application configuration levels, but not at the directory configuration level.
Note
ASP.NET increases the NumRecompilesBeforeAppRestart property value every time an assembly is invalidated and fails to be deleted.