Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.