ProcessModelSection.MinIOThreads Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define o número mínimo de threads de E/S por CPU no pool de threads do 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 da propriedade
O número mínimo de threads de E/S por CPU no pool de threads do CLR.
- Atributos
Exemplos
O exemplo de código a seguir mostra como acessar a MinIOThreads propriedade.
// 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