HttpListenerResponse.SendChunked Property

Definition

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.

Applies to