Respond Method (String, HttpStatusCode, String)

HttpServer.dll

Send a response.

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

Syntax

C#
public void Respond(
	string httpVersion,
	HttpStatusCode statusCode,
	string reason
)
Visual Basic (Declaration)
Public Sub Respond ( _
	httpVersion As String, _
	statusCode As HttpStatusCode, _
	reason As String _
)
Visual C++
public:
void Respond(
	String^ httpVersion, 
	HttpStatusCode statusCode, 
	String^ reason
)

Parameters

httpVersion
Type: System..::.String
Either HttpHelper.HTTP10 or HttpHelper.HTTP11
statusCode
Type: System.Net..::.HttpStatusCode
http status code
reason
Type: System..::.String
reason for the status code.

See Also