HttpRequestWrapper.GetBufferlessInputStream Method (Boolean)
.NET Framework (current version)
Gets a Stream object that can be used to read the incoming HTTP entity body, , optionally disabling the request length limit that is set in the MaxRequestLength property.
Assembly: System.Web (in System.Web.dll)
Public Overrides Function GetBufferlessInputStream ( disableMaxRequestLength As Boolean ) As Stream
Parameters
- disableMaxRequestLength
-
Type:
System.Boolean
true to disable the request length limit; otherwise, false.
Return Value
Type: System.IO.StreamA Stream object that can be used to read the incoming HTTP entity body.
| Exception | Condition |
|---|---|
| HttpException | The request's entity body has already been loaded and parsed. Examples of properties that cause the entity body to be loaded and parsed include the following:
To avoid this exception, call the ReadEntityBodyMode method first. This exception is also thrown if the client disconnects while the entity body is being read. |
.NET Framework
Available since 4.5
Available since 4.5
Show: