Chunked Property

HttpServer.dll

The chunked encoding modifies the body of a message in order to transfer it as a series of chunks, each with its own size indicator, followed by an OPTIONAL trailer containing entity-header fields. This allows dynamically produced content to be transferred along with the information necessary for the recipient to verify that it has received the full message.

Namespace:  HttpServer
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public bool Chunked { get; set; }
Visual Basic (Declaration)
Public Property Chunked As Boolean
Visual C++
public:
property bool Chunked {
	bool get ();
	void set (bool value);
}

See Also