HttpRuntimeSection.MaxRequestLength Property
.NET Framework (current version)
Gets or sets the maximum request size.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("maxRequestLength", DefaultValue = 4096)] [IntegerValidatorAttribute(MinValue = 0)] public int MaxRequestLength { get; set; }
Property Value
Type: System.Int32The maximum request size in kilobytes. The default size is 4096 KB (4 MB).
| Exception | Condition |
|---|---|
| ConfigurationErrorsException | The selected value is less than RequestLengthDiskThreshold. |
The MaxRequestLength property specifies the limit for the buffering threshold of the input stream. For example, this limit can be used to prevent denial of service attacks that are caused by users who post large files to the server.
The value assigned to this property should be greater or equal to value assigned to the RequestLengthDiskThreshold property.
The following example shows how to obtain the current MaxRequestLength property value.
.NET Framework
Available since 2.0
Available since 2.0
Show: