Поделиться через


ProcessModelSection.RequestLimit Свойство

Определение

Возвращает или задает значение, указывающее количество запросов, допустимых до перезапуска рабочего процесса.

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

Значение свойства

Количество допустимых запросов. По умолчанию используется значение Бесконечность.

Атрибуты

Примеры

В следующем примере кода показано, как использовать свойство RequestLimit.


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

Комментарии

Если количество запросов превышено, ASP.NET автоматически запускает новый рабочий процесс, который займет место текущего.

Применяется к