Files
opensim/OpenSim/Framework/Servers/HttpServer/OSHttpServer/RequestLineEventArgs.cs
2022-11-10 01:45:19 +00:00

26 lines
616 B
C#

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