HttpResponseHeader Enumeration |
Contains the HTTP headers that can be specified in a server response.
Namespace:
Sfs2X.WebSocketSharp.Net
Assembly:
SmartFox2X (in SmartFox2X.dll) Version: 1.8.0.0 (1.8.0)
Syntax public enum HttpResponseHeader
Members
| Member name | Value | Description |
---|
| CacheControl | 0 |
Indicates the Cache-Control header.
|
| Connection | 1 |
Indicates the Connection header.
|
| Date | 2 |
Indicates the Date header.
|
| KeepAlive | 3 |
Indicates the Keep-Alive header.
|
| Pragma | 4 |
Indicates the Pragma header.
|
| Trailer | 5 |
Indicates the Trailer header.
|
| TransferEncoding | 6 |
Indicates the Transfer-Encoding header.
|
| Upgrade | 7 |
Indicates the Upgrade header.
|
| Via | 8 |
Indicates the Via header.
|
| Warning | 9 |
Indicates the Warning header.
|
| Allow | 10 |
Indicates the Allow header.
|
| ContentLength | 11 |
Indicates the Content-Length header.
|
| ContentType | 12 |
Indicates the Content-Type header.
|
| ContentEncoding | 13 |
Indicates the Content-Encoding header.
|
| ContentLanguage | 14 |
Indicates the Content-Language header.
|
| ContentLocation | 15 |
Indicates the Content-Location header.
|
| ContentMd5 | 16 |
Indicates the Content-MD5 header.
|
| ContentRange | 17 |
Indicates the Content-Range header.
|
| Expires | 18 |
Indicates the Expires header.
|
| LastModified | 19 |
Indicates the Last-Modified header.
|
| AcceptRanges | 20 |
Indicates the Accept-Ranges header.
|
| Age | 21 |
Indicates the Age header.
|
| ETag | 22 |
Indicates the ETag header.
|
| Location | 23 |
Indicates the Location header.
|
| ProxyAuthenticate | 24 |
Indicates the Proxy-Authenticate header.
|
| RetryAfter | 25 |
Indicates the Retry-After header.
|
| Server | 26 |
Indicates the Server header.
|
| SetCookie | 27 |
Indicates the Set-Cookie header.
|
| Vary | 28 |
Indicates the Vary header.
|
| WwwAuthenticate | 29 |
Indicates the WWW-Authenticate header.
|
| SecWebSocketExtensions | 30 |
Indicates the Sec-WebSocket-Extensions header.
|
| SecWebSocketAccept | 31 |
Indicates the Sec-WebSocket-Accept header.
|
| SecWebSocketProtocol | 32 |
Indicates the Sec-WebSocket-Protocol header.
|
| SecWebSocketVersion | 33 |
Indicates the Sec-WebSocket-Version header.
|
Remarks
The HttpResponseHeader enumeration contains the HTTP response headers defined in
RFC 2616 for the HTTP/1.1 and
RFC 6455 for the WebSocket.
See Also