ProcessModelSection.MinIOThreads Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece el número mínimo de subprocesos de E/S por CPU en el grupo de subprocesos de CLR.
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
Valor de propiedad
El número mínimo de subprocesos de E/S por CPU en el grupo de subprocesos de CLR.
- Atributos
Ejemplos
El siguiente ejemplo de código muestra cómo obtener acceso a la propiedad MinIOThreads.
// 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