Partager via


ProcessModelSection.RestartQueueLimit Propriété

Définition

Obtient ou définit une valeur indiquant le nombre maximal de demandes mises en attente par l'ISAPI avant qu'un nouveau processus de traitement ne commence à gérer les demandes.

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

Valeur de propriété

Nombre de demandes mises en attente. La valeur par défaut est de 10.

Attributs

Exemples

L'exemple de code suivant illustre l'accès à la propriété 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

Remarques

Lorsque cette limite est dépassée, une requête cliente reçoit une erreur 503 jusqu’à ce que le processus de travail soit prêt.

S’applique à