HttpRequestWrapper.GetBufferlessInputStream Method

Definition

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.

C#
public override System.IO.Stream GetBufferlessInputStream();

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:

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

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

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.

C#
public override System.IO.Stream GetBufferlessInputStream(bool disableMaxRequestLength);

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:

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

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1