using OpenMetaverse; using System; namespace OSHttpServer.Parser { /// /// Used when the request line have been successfully parsed. /// public class RequestLineEventArgs : EventArgs { /// /// http method. /// public osUTF8Slice HttpMethod; /// /// version of the HTTP protocol that the client want to use. /// public osUTF8Slice HttpVersion; /// /// requested URI path. /// public osUTF8Slice UriPath; } }