HttpRuntimeSection.RequestLengthDiskThreshold Property
.NET Framework (current version)
Gets or sets the input-stream buffering threshold.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("requestLengthDiskThreshold", DefaultValue = 80)] [IntegerValidatorAttribute(MinValue = 1)] public int RequestLengthDiskThreshold { get; set; }
Property Value
Type: System.Int32The number of bytes that indicate the input-stream buffering threshold. The default is 80 kilobytes.
| Exception | Condition |
|---|---|
| ConfigurationErrorsException | The selected value is greater than MaxRequestLength. |
The RequestLengthDiskThreshold property specifies the input-stream buffering threshold limit in number of bytes. Its value should not exceed the MaxRequestLength property value. After a request entity exceeds this threshold, it is buffered transparently onto disk.
The following example shows how to use the RequestLengthDiskThreshold property.
.NET Framework
Available since 2.0
Available since 2.0
Show: