a
This commit is contained in:
@@ -0,0 +1,176 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>The HTTP headers that may be specified in a client request.</summary>
|
||||
// Token: 0x02000225 RID: 549
|
||||
[Token(Token = "0x2000225")]
|
||||
public enum HttpRequestHeader
|
||||
{
|
||||
/// <summary>The Cache-Control header, which specifies directives that must be obeyed by all cache control mechanisms along the request/response chain.</summary>
|
||||
// Token: 0x040007B9 RID: 1977
|
||||
[Token(Token = "0x40007B9")]
|
||||
CacheControl,
|
||||
/// <summary>The Connection header, which specifies options that are desired for a particular connection.</summary>
|
||||
// Token: 0x040007BA RID: 1978
|
||||
[Token(Token = "0x40007BA")]
|
||||
Connection,
|
||||
/// <summary>The Date header, which specifies the date and time at which the request originated.</summary>
|
||||
// Token: 0x040007BB RID: 1979
|
||||
[Token(Token = "0x40007BB")]
|
||||
Date,
|
||||
/// <summary>The Keep-Alive header, which specifies a parameter used into order to maintain a persistent connection.</summary>
|
||||
// Token: 0x040007BC RID: 1980
|
||||
[Token(Token = "0x40007BC")]
|
||||
KeepAlive,
|
||||
/// <summary>The Pragma header, which specifies implementation-specific directives that might apply to any agent along the request/response chain.</summary>
|
||||
// Token: 0x040007BD RID: 1981
|
||||
[Token(Token = "0x40007BD")]
|
||||
Pragma,
|
||||
/// <summary>The Trailer header, which specifies the header fields present in the trailer of a message encoded with chunked transfer-coding.</summary>
|
||||
// Token: 0x040007BE RID: 1982
|
||||
[Token(Token = "0x40007BE")]
|
||||
Trailer,
|
||||
/// <summary>The Transfer-Encoding header, which specifies what (if any) type of transformation that has been applied to the message body.</summary>
|
||||
// Token: 0x040007BF RID: 1983
|
||||
[Token(Token = "0x40007BF")]
|
||||
TransferEncoding,
|
||||
/// <summary>The Upgrade header, which specifies additional communications protocols that the client supports.</summary>
|
||||
// Token: 0x040007C0 RID: 1984
|
||||
[Token(Token = "0x40007C0")]
|
||||
Upgrade,
|
||||
/// <summary>The Via header, which specifies intermediate protocols to be used by gateway and proxy agents.</summary>
|
||||
// Token: 0x040007C1 RID: 1985
|
||||
[Token(Token = "0x40007C1")]
|
||||
Via,
|
||||
/// <summary>The Warning header, which specifies additional information about that status or transformation of a message that might not be reflected in the message.</summary>
|
||||
// Token: 0x040007C2 RID: 1986
|
||||
[Token(Token = "0x40007C2")]
|
||||
Warning,
|
||||
/// <summary>The Allow header, which specifies the set of HTTP methods supported.</summary>
|
||||
// Token: 0x040007C3 RID: 1987
|
||||
[Token(Token = "0x40007C3")]
|
||||
Allow,
|
||||
/// <summary>The Content-Length header, which specifies the length, in bytes, of the accompanying body data.</summary>
|
||||
// Token: 0x040007C4 RID: 1988
|
||||
[Token(Token = "0x40007C4")]
|
||||
ContentLength,
|
||||
/// <summary>The Content-Type header, which specifies the MIME type of the accompanying body data.</summary>
|
||||
// Token: 0x040007C5 RID: 1989
|
||||
[Token(Token = "0x40007C5")]
|
||||
ContentType,
|
||||
/// <summary>The Content-Encoding header, which specifies the encodings that have been applied to the accompanying body data.</summary>
|
||||
// Token: 0x040007C6 RID: 1990
|
||||
[Token(Token = "0x40007C6")]
|
||||
ContentEncoding,
|
||||
/// <summary>The Content-Langauge header, which specifies the natural language(s) of the accompanying body data.</summary>
|
||||
// Token: 0x040007C7 RID: 1991
|
||||
[Token(Token = "0x40007C7")]
|
||||
ContentLanguage,
|
||||
/// <summary>The Content-Location header, which specifies a URI from which the accompanying body may be obtained.</summary>
|
||||
// Token: 0x040007C8 RID: 1992
|
||||
[Token(Token = "0x40007C8")]
|
||||
ContentLocation,
|
||||
/// <summary>The Content-MD5 header, which specifies the MD5 digest of the accompanying body data, for the purpose of providing an end-to-end message integrity check.</summary>
|
||||
// Token: 0x040007C9 RID: 1993
|
||||
[Token(Token = "0x40007C9")]
|
||||
ContentMd5,
|
||||
/// <summary>The Content-Range header, which specifies where in the full body the accompanying partial body data should be applied.</summary>
|
||||
// Token: 0x040007CA RID: 1994
|
||||
[Token(Token = "0x40007CA")]
|
||||
ContentRange,
|
||||
/// <summary>The Expires header, which specifies the date and time after which the accompanying body data should be considered stale.</summary>
|
||||
// Token: 0x040007CB RID: 1995
|
||||
[Token(Token = "0x40007CB")]
|
||||
Expires,
|
||||
/// <summary>The Last-Modified header, which specifies the date and time at which the accompanying body data was last modified.</summary>
|
||||
// Token: 0x040007CC RID: 1996
|
||||
[Token(Token = "0x40007CC")]
|
||||
LastModified,
|
||||
/// <summary>The Accept header, which specifies the MIME types that are acceptable for the response.</summary>
|
||||
// Token: 0x040007CD RID: 1997
|
||||
[Token(Token = "0x40007CD")]
|
||||
Accept,
|
||||
/// <summary>The Accept-Charset header, which specifies the character sets that are acceptable for the response.</summary>
|
||||
// Token: 0x040007CE RID: 1998
|
||||
[Token(Token = "0x40007CE")]
|
||||
AcceptCharset,
|
||||
/// <summary>The Accept-Encoding header, which specifies the content encodings that are acceptable for the response.</summary>
|
||||
// Token: 0x040007CF RID: 1999
|
||||
[Token(Token = "0x40007CF")]
|
||||
AcceptEncoding,
|
||||
/// <summary>The Accept-Langauge header, which specifies that natural languages that are preferred for the response.</summary>
|
||||
// Token: 0x040007D0 RID: 2000
|
||||
[Token(Token = "0x40007D0")]
|
||||
AcceptLanguage,
|
||||
/// <summary>The Authorization header, which specifies the credentials that the client presents in order to authenticate itself to the server.</summary>
|
||||
// Token: 0x040007D1 RID: 2001
|
||||
[Token(Token = "0x40007D1")]
|
||||
Authorization,
|
||||
/// <summary>The Cookie header, which specifies cookie data presented to the server.</summary>
|
||||
// Token: 0x040007D2 RID: 2002
|
||||
[Token(Token = "0x40007D2")]
|
||||
Cookie,
|
||||
/// <summary>The Expect header, which specifies particular server behaviors that are required by the client.</summary>
|
||||
// Token: 0x040007D3 RID: 2003
|
||||
[Token(Token = "0x40007D3")]
|
||||
Expect,
|
||||
/// <summary>The From header, which specifies an Internet Email address for the human user who controls the requesting user agent.</summary>
|
||||
// Token: 0x040007D4 RID: 2004
|
||||
[Token(Token = "0x40007D4")]
|
||||
From,
|
||||
/// <summary>The Host header, which specifies the host name and port number of the resource being requested.</summary>
|
||||
// Token: 0x040007D5 RID: 2005
|
||||
[Token(Token = "0x40007D5")]
|
||||
Host,
|
||||
/// <summary>The If-Match header, which specifies that the requested operation should be performed only if the client's cached copy of the indicated resource is current.</summary>
|
||||
// Token: 0x040007D6 RID: 2006
|
||||
[Token(Token = "0x40007D6")]
|
||||
IfMatch,
|
||||
/// <summary>The If-Modified-Since header, which specifies that the requested operation should be performed only if the requested resource has been modified since the indicated data and time.</summary>
|
||||
// Token: 0x040007D7 RID: 2007
|
||||
[Token(Token = "0x40007D7")]
|
||||
IfModifiedSince,
|
||||
/// <summary>The If-None-Match header, which specifies that the requested operation should be performed only if none of client's cached copies of the indicated resources are current.</summary>
|
||||
// Token: 0x040007D8 RID: 2008
|
||||
[Token(Token = "0x40007D8")]
|
||||
IfNoneMatch,
|
||||
/// <summary>The If-Range header, which specifies that only the specified range of the requested resource should be sent, if the client's cached copy is current.</summary>
|
||||
// Token: 0x040007D9 RID: 2009
|
||||
[Token(Token = "0x40007D9")]
|
||||
IfRange,
|
||||
/// <summary>The If-Unmodified-Since header, which specifies that the requested operation should be performed only if the requested resource has not been modified since the indicated date and time.</summary>
|
||||
// Token: 0x040007DA RID: 2010
|
||||
[Token(Token = "0x40007DA")]
|
||||
IfUnmodifiedSince,
|
||||
/// <summary>The Max-Forwards header, which specifies an integer indicating the remaining number of times that this request may be forwarded.</summary>
|
||||
// Token: 0x040007DB RID: 2011
|
||||
[Token(Token = "0x40007DB")]
|
||||
MaxForwards,
|
||||
/// <summary>The Proxy-Authorization header, which specifies the credentials that the client presents in order to authenticate itself to a proxy.</summary>
|
||||
// Token: 0x040007DC RID: 2012
|
||||
[Token(Token = "0x40007DC")]
|
||||
ProxyAuthorization,
|
||||
/// <summary>The Referer header, which specifies the URI of the resource from which the request URI was obtained.</summary>
|
||||
// Token: 0x040007DD RID: 2013
|
||||
[Token(Token = "0x40007DD")]
|
||||
Referer,
|
||||
/// <summary>The Range header, which specifies the sub-range(s) of the response that the client requests be returned in lieu of the entire response.</summary>
|
||||
// Token: 0x040007DE RID: 2014
|
||||
[Token(Token = "0x40007DE")]
|
||||
Range,
|
||||
/// <summary>The TE header, which specifies the transfer encodings that are acceptable for the response.</summary>
|
||||
// Token: 0x040007DF RID: 2015
|
||||
[Token(Token = "0x40007DF")]
|
||||
Te,
|
||||
/// <summary>The Translate header, a Microsoft extension to the HTTP specification used in conjunction with WebDAV functionality.</summary>
|
||||
// Token: 0x040007E0 RID: 2016
|
||||
[Token(Token = "0x40007E0")]
|
||||
Translate,
|
||||
/// <summary>The User-Agent header, which specifies information about the client agent.</summary>
|
||||
// Token: 0x040007E1 RID: 2017
|
||||
[Token(Token = "0x40007E1")]
|
||||
UserAgent
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user