ProcessModelSection.MinIOThreads 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 minimum number of I/O threads per CPU in the CLR thread pool.
public:
property int MinIOThreads { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("minIoThreads", DefaultValue=1)]
[System.Configuration.IntegerValidator(MaxValue=2147483646, MinValue=1)]
public int MinIOThreads { get; set; }
[<System.Configuration.ConfigurationProperty("minIoThreads", DefaultValue=1)>]
[<System.Configuration.IntegerValidator(MaxValue=2147483646, MinValue=1)>]
member this.MinIOThreads : int with get, set
Public Property MinIOThreads As Integer
Property Value
The minimum number of I/O threads per CPU in the CLR thread pool.
- Attributes
Examples
The following code example shows how to access the MinIOThreads property.
// Get the current MinIOThreads property value.
int minIOThreads = processModelSection.MinIOThreads;
// Set the MinIOThreads property to 1.
processModelSection.MinIOThreads = 1;
' Get the current MinIOThreads property value.
Dim minIOThreads As Integer = _
processModelSection.MinIOThreads
' Set the MinIOThreads property to 1.
processModelSection.MinIOThreads = 1
Applies to
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.