初始化
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* 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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user