Event driven parser used to parse incoming HTTP requests.

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

Syntax

C#
public interface IHttpRequestParser
Visual Basic (Declaration)
Public Interface IHttpRequestParser
Visual C++
public interface class IHttpRequestParser

Remarks

The parser supports partial messages and keeps the states between each parsed buffer. It's therefore important that the parser gets Clear()()()ed if a client disconnects.

See Also