aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/Net/HttpVersion.cs
blob: c0839b46d5c4022c29cceb5a3f95e31287dadd58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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() { }
    }
}