HttpRuntimeSection.MaxRequestLength Propriedade

Definição

Obtém ou define o tamanho máximo da solicitação.

public:
 property int MaxRequestLength { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxRequestLength", DefaultValue=4096)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxRequestLength { get; set; }
[<System.Configuration.ConfigurationProperty("maxRequestLength", DefaultValue=4096)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MaxRequestLength : int with get, set
Public Property MaxRequestLength As Integer

Valor da propriedade

O tamanho máximo da solicitação em quilobytes. O tamanho padrão é 4096 KB (4 MB).

Atributos

Exceções

O valor selecionado é menor que RequestLengthDiskThreshold.

Exemplos

O exemplo a seguir mostra como obter o valor da propriedade atual MaxRequestLength .

// Get the MaxRequestLength property value.
Response.Write("MaxRequestLength: " +
  configSection.MaxRequestLength + "<br>");

// Set the MaxRequestLength property value to 2048 kilobytes.
configSection.MaxRequestLength = 2048;
' Get the MaxRequestLength property value.
Response.Write("MaxRequestLength: " & _
  configSection.MaxRequestLength & "<br>")

' Set the MaxRequestLength property value to 2048 kilobytes.
configSection.MaxRequestLength = 2048

Comentários

A MaxRequestLength propriedade especifica o limite para o limite de buffer do fluxo de entrada. Por exemplo, esse limite pode ser usado para evitar ataques de negação de serviço causados por usuários que postam arquivos grandes no servidor.

O valor atribuído a essa propriedade deve ser maior ou igual ao valor atribuído à RequestLengthDiskThreshold propriedade .

Aplica-se a