HttpListenerResponse.SendChunked Property
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 or sets whether the response uses chunked transfer encoding.
public:
property bool SendChunked { bool get(); void set(bool value); };
public bool SendChunked { get; set; }
member this.SendChunked : bool with get, set
Public Property SendChunked As Boolean
Property Value
true
if the response is set to use chunked transfer encoding; otherwise, false
. The default is false
.
Remarks
The body of a chunked message is made up of a series of chunks. Each chunk comprises of two parts - the size of the chunk data and the actual data. When set to true the response is sent using chunked transfer encoding.