Welcome to mirror list, hosted at ThFree Co, Russian Federation.

HttpVersion.cs « System.Net « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7172fbce27efc93465d5c8047bd8ad506afa3085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// System.Net.HttpVersion.cs
//
// Author:
//   Lawrence Pit (loz@cable.a2000.nl)
//

using System;

namespace System.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 () {}
	}
}