HttpRuntimeSection.MinFreeThreads Property
.NET Framework 3.0
Gets or sets the minimum number of threads that must be free before a request for resources in this configuration scope can be serviced.
Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public int get_MinFreeThreads () /** @property */ public void set_MinFreeThreads (int value)
public function get MinFreeThreads () : int public function set MinFreeThreads (value : int)
Not applicable.
Property Value
The 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. |
Community Additions
ADD
Show:
Note: