HttpRuntimeSection::MinLocalRequestFreeThreads Property
.NET Framework (current version)
Gets or sets the minimum number of free threads required to service a local request.
Assembly: System.Web (in System.Web.dll)
public: [ConfigurationPropertyAttribute("minLocalRequestFreeThreads", DefaultValue = 4)] [IntegerValidatorAttribute(MinValue = 0)] property int MinLocalRequestFreeThreads { int get(); void set(int value); }
Property Value
Type: System::Int32The minimum number of free threads assigned to local requests. The default value is 4.
The MinLocalRequestFreeThreads property defines the number of free threads that ASP.NET keeps available to allow execution of new local requests. The intent is to avoid a possible deadlock with recursive reentry into the Web server.
.NET Framework
Available since 2.0
Available since 2.0
Show: