HttpRequestHeader.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. //Copyright 2010 Microsoft Corporation
  2. //
  3. //Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
  4. //You may obtain a copy of the License at
  5. //
  6. //http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. //Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
  9. //"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. //See the License for the specific language governing permissions and limitations under the License.
  11. namespace System.Data.Services.Http
  12. {
  13. using System;
  14. internal enum HttpRequestHeader
  15. {
  16. CacheControl,
  17. Connection,
  18. Date,
  19. KeepAlive,
  20. Pragma,
  21. Trailer,
  22. TransferEncoding,
  23. Upgrade,
  24. Via,
  25. Warning,
  26. Allow,
  27. ContentLength,
  28. ContentType,
  29. ContentEncoding,
  30. ContentLanguage,
  31. ContentLocation,
  32. ContentMd5,
  33. ContentRange,
  34. Expires,
  35. LastModified,
  36. Accept,
  37. AcceptCharset,
  38. AcceptEncoding,
  39. AcceptLanguage,
  40. Authorization,
  41. Cookie,
  42. Expect,
  43. From,
  44. Host,
  45. IfMatch,
  46. IfModifiedSince,
  47. IfNoneMatch,
  48. IfRange,
  49. IfUnmodifiedSince,
  50. MaxForwards,
  51. ProxyAuthorization,
  52. Referer,
  53. Range,
  54. Te,
  55. Translate,
  56. UserAgent,
  57. WlcSafeAgentHeaderName,
  58. Slug
  59. }
  60. }