HttpRequestBase.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.
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.
public:
virtual System::IO::Stream ^ GetBufferlessInputStream();
public virtual System.IO.Stream GetBufferlessInputStream ();
abstract member GetBufferlessInputStream : unit -> System.IO.Stream
override this.GetBufferlessInputStream : unit -> System.IO.Stream
Public Overridable Function GetBufferlessInputStream () As Stream
Returns
A Stream object that can be used to read the incoming HTTP entity body.
See also
Applies to
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.
public:
virtual System::IO::Stream ^ GetBufferlessInputStream(bool disableMaxRequestLength);
public virtual System.IO.Stream GetBufferlessInputStream (bool disableMaxRequestLength);
abstract member GetBufferlessInputStream : bool -> System.IO.Stream
override this.GetBufferlessInputStream : bool -> System.IO.Stream
Public Overridable 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.