HttpVersion.cs 397 B

12345678910111213141516171819202122
  1. //
  2. // System.Net.HttpVersion.cs
  3. //
  4. // Author:
  5. // Lawrence Pit ([email protected])
  6. //
  7. using System;
  8. namespace System.Net {
  9. // <remarks>
  10. // </remarks>
  11. public class HttpVersion {
  12. public static readonly Version Version10 = new Version (1, 0);
  13. public static readonly Version Version11 = new Version (1, 1);
  14. // pretty useless..
  15. public HttpVersion () {}
  16. }
  17. }