1// +build go1.13
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License.
5
6package azcore
7
8// Constants ensuring that header names are correctly spelled and consistently cased.
9const (
10	HeaderAuthorization      = "Authorization"
11	HeaderCacheControl       = "Cache-Control"
12	HeaderContentEncoding    = "Content-Encoding"
13	HeaderContentDisposition = "Content-Disposition"
14	HeaderContentLanguage    = "Content-Language"
15	HeaderContentLength      = "Content-Length"
16	HeaderContentMD5         = "Content-MD5"
17	HeaderContentType        = "Content-Type"
18	HeaderDate               = "Date"
19	HeaderIfMatch            = "If-Match"
20	HeaderIfModifiedSince    = "If-Modified-Since"
21	HeaderIfNoneMatch        = "If-None-Match"
22	HeaderIfUnmodifiedSince  = "If-Unmodified-Since"
23	HeaderMetadata           = "Metadata"
24	HeaderRange              = "Range"
25	HeaderRetryAfter         = "Retry-After"
26	HeaderURLEncoded         = "application/x-www-form-urlencoded"
27	HeaderUserAgent          = "User-Agent"
28	HeaderXmsDate            = "x-ms-date"
29	HeaderXmsVersion         = "x-ms-version"
30)
31