HttpRuntimeSection::MinFreeThreads Property
Gets or sets the minimum number of threads that must be free before a request for resources in this configuration scope can be serviced.
Assembly: System.Web (in System.Web.dll)
[IntegerValidatorAttribute(MinValue = )] [ConfigurationPropertyAttribute(L"minFreeThreads", DefaultValue = )] public: property int MinFreeThreads { int get (); void set (int value); }
Property Value
Type: System::Int32The minimum number of free threads in the common language runtime (CLR) thread pool before a request in this configuration scope will be serviced. The default value is 8.
The MinFreeThreads property defines the minimum number of free threads to execute a request. If a sufficient number of threads are not available, the request will remain queued and periodic checks for thread availability will continue until the required amount of threads are present. The default value is 8.
Note: |
|---|
ASP.NET keeps this many threads free for requests that require additional threads to complete their processing. |
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: