ParseMessage Method

HttpServer.dll

Parse a message

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

Syntax

C#
public int ParseMessage(
	byte[] buffer,
	int offset,
	int size
)
Visual Basic (Declaration)
Public Function ParseMessage ( _
	buffer As Byte(), _
	offset As Integer, _
	size As Integer _
) As Integer
Visual C++
public:
int ParseMessage(
	array<unsigned char>^ buffer, 
	int offset, 
	int size
)

Parameters

buffer
Type: array< System..::.Byte >[]()[]

[Missing <param name="buffer"/> documentation for "M:HttpServer.HttpRequestParser.ParseMessage(System.Byte[],System.Int32,System.Int32)"]

offset
Type: System..::.Int32
where in buffer that parsing should start
size
Type: System..::.Int32
number of bytes to parse

Return Value

Unparsed bytes left in buffer.

See Also