HttpRuntimeSection.MaxRequestLength 属性

定义

获取或设置请求的最大大小。

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

属性值

Int32

请求的最大大小(以千字节为单位)。 默认大小为 4096 KB (4 MB)。

属性

例外

示例

以下示例演示如何获取当前 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

注解

MaxRequestLength 属性指定输入流的缓冲阈值的限制。 例如,此限制可用于防止由将大型文件发布到服务器的用户导致的拒绝服务攻击。

分配给此属性的值应大于或等于分配给该 RequestLengthDiskThreshold 属性的值。

适用于