You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1009 B
41 lines
1009 B
/*
|
|
* 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";
|
|
}
|
|
}
|
|
|