You've already forked linux-packaging-mono
29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="HttpVersion.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Net {
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Defines the HTTP version number supported by the <see cref='System.Net.HttpWebRequest'/> and
|
|
/// <see cref='System.Net.HttpWebResponse'/> classes.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public class HttpVersion {
|
|
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public static readonly Version Version10 = new Version(1,0);
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public static readonly Version Version11 = new Version(1,1);
|
|
|
|
} // class HttpVersion
|
|
|
|
} // namespace System.Net
|