Partager via


ProcessModelSection.WebGarden Propriété

Définition

Obtient ou définit une valeur permettant aux unités centrales disponibles d'exécuter les processus de traitement.

public:
 property bool WebGarden { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("webGarden", DefaultValue=false)]
public bool WebGarden { get; set; }
[<System.Configuration.ConfigurationProperty("webGarden", DefaultValue=false)>]
member this.WebGarden : bool with get, set
Public Property WebGarden As Boolean

Valeur de propriété

Boolean

true, si CpuMask est utilisé pour mapper les processus de traitement au nombre d'unités centrales autorisées ; false si CpuMask est ignoré.

Attributs

Exemples

L'exemple de code suivant illustre l'accès à la propriété WebGarden.


// Get the current WebGarden property value.
bool webGarden = 
 processModelSection.WebGarden;

// Set the WebGarden property to true.
processModelSection.WebGarden = true;
' Get the current WebGarden property value.
   Dim webGarden As Boolean = _
   processModelSection.WebGarden

' Set the WebGarden property to true.
processModelSection.WebGarden = True

Remarques

La WebGarden propriété doit être utilisée avec la CpuMask propriété.

Si la WebGarden propriété est définie sur false, l’attribut CpuMask est ignoré et un seul processus worker s’exécute.

Notes

Un serveur web multiprocesseur est appelé jardin web.

S’applique à