Compartilhar via


ProcessModelSection.RestartQueueLimit Propriedade

Definição

Obtém ou define um valor que indica o número máximo de solicitações enfileiradas pela ISAPI enquanto aguarda um novo processo de trabalho começar a processar as solicitações.

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 da propriedade

Int32

O número de solicitações enfileiradas. O padrão é 10.

Atributos

Exemplos

O exemplo de código a seguir mostra como acessar a RestartQueueLimit propriedade.


// 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

Comentários

Quando esse limite for excedido, uma solicitação de cliente receberá um erro 503 até que o processo de trabalho esteja pronto.

Aplica-se a