Share via


SendChunked Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets or sets whether the response uses chunked transfer encoding.

Namespace:  System.Net
Assembly:  System.Http (in System.Http.dll)

Syntax

'Declaration
Public Property SendChunked As Boolean
public bool SendChunked { get; set; }
public:
property bool SendChunked {
    bool get ();
    void set (bool value);
}
member SendChunked : bool with get, set
function get SendChunked () : boolean
function set SendChunked (value : boolean)

Property Value

Type: System. . :: . .Boolean
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.

.NET Framework Security

See Also

Reference

HttpListenerResponse Class

System.Net Namespace