HttpRequestWrapper.GetBufferlessInputStream Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a Stream object that can be used to read the incoming HTTP entity body.
Overloads
GetBufferlessInputStream() |
Gets a Stream object that can be used to read the incoming HTTP entity body. |
GetBufferlessInputStream(Boolean) |
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. |
GetBufferlessInputStream()
Gets a Stream object that can be used to read the incoming HTTP entity body.
public:
override System::IO::Stream ^ GetBufferlessInputStream();
public override System.IO.Stream GetBufferlessInputStream ();
override this.GetBufferlessInputStream : unit -> System.IO.Stream
Public Overrides Function GetBufferlessInputStream () As Stream
Returns
A Stream object that can be used to read the incoming HTTP entity body.
Exceptions
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:
The Form property.
The InputStream property.
The Files property.
The GetBufferedInputStream() method.
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.
See also
Applies to
GetBufferlessInputStream(Boolean)
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.
public:
override System::IO::Stream ^ GetBufferlessInputStream(bool disableMaxRequestLength);
public override System.IO.Stream GetBufferlessInputStream (bool disableMaxRequestLength);
override this.GetBufferlessInputStream : bool -> System.IO.Stream
Public Overrides Function GetBufferlessInputStream (disableMaxRequestLength As Boolean) As Stream
Parameters
- disableMaxRequestLength
- Boolean
true
to disable the request length limit; otherwise, false
.
Returns
A Stream object that can be used to read the incoming HTTP entity body.
Exceptions
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:
The Form property.
The Files property.
The InputStream property.
The GetBufferedInputStream() method.
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.