HttpRequestBase.GetBufferlessInputStream Method

Definition

When implemented in a derived class, gets a Stream object that can be used to read the incoming HTTP entity body.

Overloads

GetBufferlessInputStream()

When implemented in a derived class, 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(Boolean)

When implemented in a derived class, 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()

When implemented in a derived class, 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 virtual System.IO.Stream GetBufferlessInputStream();

Returns

A Stream object that can be used to read the incoming HTTP entity body.

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)

When implemented in a derived class, 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 virtual 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.

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