Sdílet prostřednictvím


ProcessModelSection.RequestLimit Vlastnost

Definice

Získá nebo nastaví hodnotu označující počet požadavků povolených před recyklací pracovního procesu.

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

Hodnota vlastnosti

Počet povolených požadavků. Výchozí hodnota je Nekonečná.

Atributy

Příklady

Následující příklad kódu ukazuje, jak použít RequestLimit vlastnost.


// Get the current RequestLimit property value.
int reqLimit = 
    processModelSection.RequestLimit;

// Set the RequestLimit property to 4096.
processModelSection.RequestLimit = 4096;
' Get the current RequestLimit property value.
   Dim reqLimit As Integer = _
   processModelSection.RequestLimit

' Set the RequestLimit property to 4096.
processModelSection.RequestLimit = 4096

Poznámky

Pokud dojde k překročení počtu požadavků, ASP.NET automaticky spustí nový pracovní proces, který bude místo aktuálního pracovního procesu.

Platí pro