Compartir a través de


ProcessModelSection.WebGarden Propiedad

Definición

Obtiene o establece un valor que permite que las CPU disponibles ejecuten los procesos de trabajo.

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

Valor de propiedad

Es true si se utiliza CpuMask para asignar los procesos de trabajo al número de CPU aptas; es false si se omite CpuMask.

Atributos

Ejemplos

El siguiente ejemplo de código muestra cómo obtener acceso a la propiedad 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

Comentarios

La WebGarden propiedad debe usarse con la CpuMask propiedad .

Si la WebGarden propiedad se establece falseen , el CpuMask atributo se omite y solo se ejecuta un proceso de trabajo.

Nota

Un servidor web multiprocesador se denomina jardín web.

Se aplica a