ProcessModelSection.MinIOThreads Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le nombre minimal de threads d'E/S par unité centrale dans le pool de threads 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
Valeur de propriété
Nombre minimal de threads d'E/S par unité centrale dans le pool de threads CLR.
- Attributs
Exemples
L'exemple de code suivant illustre l'accès à la propriété 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