ProcessModelSection.MinIOThreads Property

 

Gets or sets the minimum number of I/O threads per CPU in the CLR thread pool.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

<ConfigurationPropertyAttribute("minIoThreads", DefaultValue := 1)>
<IntegerValidatorAttribute(MinValue := 1, MaxValue := 2147483646)>
Public Property MinIOThreads As Integer

Property Value

Type: System.Int32

The minimum number of I/O threads per CPU in the CLR thread pool.

The following code example shows how to access the MinIOThreads property.

' Get the current MinIOThreads property value.
   Dim minIOThreads As Integer = _
   processModelSection.MinIOThreads

' Set the MinIOThreads property to 1.
processModelSection.MinIOThreads = 1

.NET Framework
Available since 2.0
Return to top
Show: