| 12345678910111213141516171819202122 |
- //
- // System.Net.HttpVersion.cs
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- 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 () {}
- }
- }
|