scripts
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Defines the HTTP version numbers that are supported by the <see cref="T:System.Net.HttpWebRequest" /> and <see cref="T:System.Net.HttpWebResponse" /> classes.</summary>
|
||||
// Token: 0x02000237 RID: 567
|
||||
public class HttpVersion
|
||||
{
|
||||
/// <summary>Defines a <see cref="T:System.Version" /> instance for HTTP 1.0.</summary>
|
||||
// Token: 0x04001122 RID: 4386
|
||||
public static readonly Version Version10 = new Version(1, 0);
|
||||
|
||||
/// <summary>Defines a <see cref="T:System.Version" /> instance for HTTP 1.1.</summary>
|
||||
// Token: 0x04001123 RID: 4387
|
||||
public static readonly Version Version11 = new Version(1, 1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user