Compartir a través de


ProcessModelSection.RestartQueueLimit Propiedad

Definición

Obtiene o establece un valor que indica el número máximo de solicitudes que ISAPI pone en la cola a la espera de que un nuevo proceso de trabajo empiece a controlar las solicitudes.

public:
 property int RestartQueueLimit { int get(); void set(int value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))]
[System.Configuration.ConfigurationProperty("restartQueueLimit", DefaultValue=10)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int RestartQueueLimit { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))>]
[<System.Configuration.ConfigurationProperty("restartQueueLimit", DefaultValue=10)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.RestartQueueLimit : int with get, set
Public Property RestartQueueLimit As Integer

Valor de propiedad

Int32

El número de solicitudes existentes en la cola. El valor predeterminado es 10.

Atributos

Ejemplos

El siguiente ejemplo de código muestra cómo obtener acceso a la propiedad RestartQueueLimit.


// Get the current RestartQueueLimit property value.
int restartQueueLimit = 
    processModelSection.RestartQueueLimit;

// Set the RestartQueueLimit property to 8.
processModelSection.RestartQueueLimit = 8;
' Get the current RestartQueueLimit property value.
   Dim restartQueueLimit As Integer = _
   processModelSection.RestartQueueLimit

' Set the RestartQueueLimit property to 8.
processModelSection.RestartQueueLimit = 8

Comentarios

Cuando se supera este límite, una solicitud de cliente recibirá un error 503 hasta que el proceso de trabajo esté listo.

Se aplica a