You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/SocketHttpListener/Net/HttpVersion.cs

17 lines
331 B

using System;
namespace SocketHttpListener.Net
{
// <remarks>
// </remarks>
public class HttpVersion
{
public static readonly Version Version10 = new Version(1, 0);
public static readonly Version Version11 = new Version(1, 1);
// pretty useless..
public HttpVersion() { }
}
}