42 lines
1009 B
C#
42 lines
1009 B
C#
/*
|
||
* Copyright (C) Alibaba Cloud Computing
|
||
* All rights reserved.
|
||
*
|
||
* 版权所有 (C)阿里云计算有限公司
|
||
*/
|
||
|
||
using System;
|
||
|
||
namespace Aliyun.Api.LOG.Common.Utilities
|
||
{
|
||
/// <summary>
|
||
/// Description of HttpHeaders.
|
||
/// </summary>
|
||
internal static class HttpHeaders
|
||
{
|
||
public const string Authorization = "Authorization";
|
||
|
||
public const string CacheControl = "Cache-Control";
|
||
|
||
public const string ContentDisposition = "Content-Disposition";
|
||
|
||
public const string ContentEncoding = "Content-Encoding";
|
||
|
||
public const string ContentLength = "Content-Length";
|
||
|
||
public const string ContentMd5 = "Content-MD5";
|
||
|
||
public const string ContentType = "Content-Type";
|
||
|
||
public const string Date = "Date";
|
||
|
||
public const string Expires = "Expires";
|
||
|
||
public const string ETag = "ETag";
|
||
|
||
public const string LastModified = "Last-Modified";
|
||
|
||
public const string Range = "Range";
|
||
}
|
||
}
|