OnFirstLine Method

HttpServer.dll

Parse request line

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

Syntax

C#
protected void OnFirstLine(
	string value
)
Visual Basic (Declaration)
Protected Sub OnFirstLine ( _
	value As String _
)
Visual C++
protected:
void OnFirstLine(
	String^ value
)

Parameters

value
Type: System..::.String

[Missing <param name="value"/> documentation for "M:HttpServer.HttpRequestParser.OnFirstLine(System.String)"]

Remarks

Expects the following format: "Method SP Request-URI SP HTTP-Version CRLF"

Exceptions

ExceptionCondition
HttpServer.Exceptions..::.BadRequestExceptionIf line is incorrect

See Also