using System; namespace System.Net { /// The HTTP headers that may be specified in a client request. // Token: 0x02000232 RID: 562 public enum HttpRequestHeader { /// The Cache-Control header, which specifies directives that must be obeyed by all cache control mechanisms along the request/response chain. // Token: 0x040010A1 RID: 4257 CacheControl, /// The Connection header, which specifies options that are desired for a particular connection. // Token: 0x040010A2 RID: 4258 Connection, /// The Date header, which specifies the date and time at which the request originated. // Token: 0x040010A3 RID: 4259 Date, /// The Keep-Alive header, which specifies a parameter used into order to maintain a persistent connection. // Token: 0x040010A4 RID: 4260 KeepAlive, /// The Pragma header, which specifies implementation-specific directives that might apply to any agent along the request/response chain. // Token: 0x040010A5 RID: 4261 Pragma, /// The Trailer header, which specifies the header fields present in the trailer of a message encoded with chunked transfer-coding. // Token: 0x040010A6 RID: 4262 Trailer, /// The Transfer-Encoding header, which specifies what (if any) type of transformation that has been applied to the message body. // Token: 0x040010A7 RID: 4263 TransferEncoding, /// The Upgrade header, which specifies additional communications protocols that the client supports. // Token: 0x040010A8 RID: 4264 Upgrade, /// The Via header, which specifies intermediate protocols to be used by gateway and proxy agents. // Token: 0x040010A9 RID: 4265 Via, /// The Warning header, which specifies additional information about that status or transformation of a message that might not be reflected in the message. // Token: 0x040010AA RID: 4266 Warning, /// The Allow header, which specifies the set of HTTP methods supported. // Token: 0x040010AB RID: 4267 Allow, /// The Content-Length header, which specifies the length, in bytes, of the accompanying body data. // Token: 0x040010AC RID: 4268 ContentLength, /// The Content-Type header, which specifies the MIME type of the accompanying body data. // Token: 0x040010AD RID: 4269 ContentType, /// The Content-Encoding header, which specifies the encodings that have been applied to the accompanying body data. // Token: 0x040010AE RID: 4270 ContentEncoding, /// The Content-Langauge header, which specifies the natural language(s) of the accompanying body data. // Token: 0x040010AF RID: 4271 ContentLanguage, /// The Content-Location header, which specifies a URI from which the accompanying body may be obtained. // Token: 0x040010B0 RID: 4272 ContentLocation, /// 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. // Token: 0x040010B1 RID: 4273 ContentMd5, /// The Content-Range header, which specifies where in the full body the accompanying partial body data should be applied. // Token: 0x040010B2 RID: 4274 ContentRange, /// The Expires header, which specifies the date and time after which the accompanying body data should be considered stale. // Token: 0x040010B3 RID: 4275 Expires, /// The Last-Modified header, which specifies the date and time at which the accompanying body data was last modified. // Token: 0x040010B4 RID: 4276 LastModified, /// The Accept header, which specifies the MIME types that are acceptable for the response. // Token: 0x040010B5 RID: 4277 Accept, /// The Accept-Charset header, which specifies the character sets that are acceptable for the response. // Token: 0x040010B6 RID: 4278 AcceptCharset, /// The Accept-Encoding header, which specifies the content encodings that are acceptable for the response. // Token: 0x040010B7 RID: 4279 AcceptEncoding, /// The Accept-Langauge header, which specifies that natural languages that are preferred for the response. // Token: 0x040010B8 RID: 4280 AcceptLanguage, /// The Authorization header, which specifies the credentials that the client presents in order to authenticate itself to the server. // Token: 0x040010B9 RID: 4281 Authorization, /// The Cookie header, which specifies cookie data presented to the server. // Token: 0x040010BA RID: 4282 Cookie, /// The Expect header, which specifies particular server behaviors that are required by the client. // Token: 0x040010BB RID: 4283 Expect, /// The From header, which specifies an Internet E-mail address for the human user who controls the requesting user agent. // Token: 0x040010BC RID: 4284 From, /// The Host header, which specifies the host name and port number of the resource being requested. // Token: 0x040010BD RID: 4285 Host, /// 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. // Token: 0x040010BE RID: 4286 IfMatch, /// 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. // Token: 0x040010BF RID: 4287 IfModifiedSince, /// 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. // Token: 0x040010C0 RID: 4288 IfNoneMatch, /// 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. // Token: 0x040010C1 RID: 4289 IfRange, /// 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. // Token: 0x040010C2 RID: 4290 IfUnmodifiedSince, /// The Max-Forwards header, which specifies an integer indicating the remaining number of times that this request may be forwarded. // Token: 0x040010C3 RID: 4291 MaxForwards, /// The Proxy-Authorization header, which specifies the credentials that the client presents in order to authenticate itself to a proxy. // Token: 0x040010C4 RID: 4292 ProxyAuthorization, /// The Referer header, which specifies the URI of the resource from which the request URI was obtained. // Token: 0x040010C5 RID: 4293 Referer, /// The Range header, which specifies the the sub-range(s) of the response that the client requests be returned in lieu of the entire response. // Token: 0x040010C6 RID: 4294 Range, /// The TE header, which specifies the transfer encodings that are acceptable for the response. // Token: 0x040010C7 RID: 4295 Te, /// The Translate header, a Microsoft extension to the HTTP specification used in conjunction with WebDAV functionality. // Token: 0x040010C8 RID: 4296 Translate, /// The User-Agent header, which specifies information about the client agent. // Token: 0x040010C9 RID: 4297 UserAgent } }