101 lines
5.5 KiB
C#
101 lines
5.5 KiB
C#
using System;
|
|
|
|
namespace System.Net
|
|
{
|
|
/// <summary>The HTTP headers that can be specified in a server response.</summary>
|
|
// Token: 0x02000233 RID: 563
|
|
public enum HttpResponseHeader
|
|
{
|
|
/// <summary>The Cache-Control header, which specifies caching directives that must be obeyed by all caching mechanisms along the request/response chain.</summary>
|
|
// Token: 0x040010CB RID: 4299
|
|
CacheControl,
|
|
/// <summary>The Connection header, which specifies options that are desired for a particular connection.</summary>
|
|
// Token: 0x040010CC RID: 4300
|
|
Connection,
|
|
/// <summary>The Date header, which specifies the date and time at which the response originated.</summary>
|
|
// Token: 0x040010CD RID: 4301
|
|
Date,
|
|
/// <summary>The Keep-Alive header, which specifies a parameter to be used to maintain a persistent connection.</summary>
|
|
// Token: 0x040010CE RID: 4302
|
|
KeepAlive,
|
|
/// <summary>The Pragma header, which specifies implementation-specific directives that might apply to any agent along the request/response chain.</summary>
|
|
// Token: 0x040010CF RID: 4303
|
|
Pragma,
|
|
/// <summary>The Trailer header, which specifies that the indicated header fields are present in the trailer of a message that is encoded with chunked transfer-coding.</summary>
|
|
// Token: 0x040010D0 RID: 4304
|
|
Trailer,
|
|
/// <summary>The Transfer-Encoding header, which specifies what (if any) type of transformation has been applied to the message body.</summary>
|
|
// Token: 0x040010D1 RID: 4305
|
|
TransferEncoding,
|
|
/// <summary>The Upgrade header, which specifies additional communications protocols that the client supports.</summary>
|
|
// Token: 0x040010D2 RID: 4306
|
|
Upgrade,
|
|
/// <summary>The Via header, which specifies intermediate protocols to be used by gateway and proxy agents.</summary>
|
|
// Token: 0x040010D3 RID: 4307
|
|
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: 0x040010D4 RID: 4308
|
|
Warning,
|
|
/// <summary>The Allow header, which specifies the set of HTTP methods that are supported.</summary>
|
|
// Token: 0x040010D5 RID: 4309
|
|
Allow,
|
|
/// <summary>The Content-Length header, which specifies the length, in bytes, of the accompanying body data.</summary>
|
|
// Token: 0x040010D6 RID: 4310
|
|
ContentLength,
|
|
/// <summary>The Content-Type header, which specifies the MIME type of the accompanying body data.</summary>
|
|
// Token: 0x040010D7 RID: 4311
|
|
ContentType,
|
|
/// <summary>The Content-Encoding header, which specifies the encodings that have been applied to the accompanying body data.</summary>
|
|
// Token: 0x040010D8 RID: 4312
|
|
ContentEncoding,
|
|
/// <summary>The Content-Langauge header, which specifies the natural language or languages of the accompanying body data.</summary>
|
|
// Token: 0x040010D9 RID: 4313
|
|
ContentLanguage,
|
|
/// <summary>The Content-Location header, which specifies a URI from which the accompanying body can be obtained.</summary>
|
|
// Token: 0x040010DA RID: 4314
|
|
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: 0x040010DB RID: 4315
|
|
ContentMd5,
|
|
/// <summary>The Range header, which specifies the subrange or subranges of the response that the client requests be returned in lieu of the entire response.</summary>
|
|
// Token: 0x040010DC RID: 4316
|
|
ContentRange,
|
|
/// <summary>The Expires header, which specifies the date and time after which the accompanying body data should be considered stale.</summary>
|
|
// Token: 0x040010DD RID: 4317
|
|
Expires,
|
|
/// <summary>The Last-Modified header, which specifies the date and time at which the accompanying body data was last modified.</summary>
|
|
// Token: 0x040010DE RID: 4318
|
|
LastModified,
|
|
/// <summary>The Accept-Ranges header, which specifies the range that is accepted by the server.</summary>
|
|
// Token: 0x040010DF RID: 4319
|
|
AcceptRanges,
|
|
/// <summary>The Age header, which specifies the time, in seconds, since the response was generated by the originating server.</summary>
|
|
// Token: 0x040010E0 RID: 4320
|
|
Age,
|
|
/// <summary>The Etag header, which specifies the current value for the requested variant. </summary>
|
|
// Token: 0x040010E1 RID: 4321
|
|
ETag,
|
|
/// <summary>The Location header, which specifies a URI to which the client is redirected to obtain the requested resource.</summary>
|
|
// Token: 0x040010E2 RID: 4322
|
|
Location,
|
|
/// <summary>The Proxy-Authenticate header, which specifies that the client must authenticate itself to a proxy.</summary>
|
|
// Token: 0x040010E3 RID: 4323
|
|
ProxyAuthenticate,
|
|
/// <summary>The Retry-After header, which specifies a time (in seconds), or a date and time, after which the client can retry its request.</summary>
|
|
// Token: 0x040010E4 RID: 4324
|
|
RetryAfter,
|
|
/// <summary>The Server header, which specifies information about the originating server agent.</summary>
|
|
// Token: 0x040010E5 RID: 4325
|
|
Server,
|
|
/// <summary>The Set-Cookie header, which specifies cookie data that is presented to the client.</summary>
|
|
// Token: 0x040010E6 RID: 4326
|
|
SetCookie,
|
|
/// <summary>The Vary header, which specifies the request headers that are used to determine whether a cached response is fresh.</summary>
|
|
// Token: 0x040010E7 RID: 4327
|
|
Vary,
|
|
/// <summary>The WWW-Authenticate header, which specifies that the client must authenticate itself to the server.</summary>
|
|
// Token: 0x040010E8 RID: 4328
|
|
WwwAuthenticate
|
|
}
|
|
}
|