Body Property

HttpServer.dll

The body stream is used to cache the body contents before sending everything to the client. It's the simplest way to serve documents.

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

Syntax

C#
public Stream Body { get; set; }
Visual Basic (Declaration)
Public Property Body As Stream
Visual C++
public:
property Stream^ Body {
	Stream^ get ();
	void set (Stream^ value);
}

See Also