public static class HttpHeader
|
{
|
public const string ContentLength = "Content-Length";//内容长度
|
public const string ContentType = "Content-Type";//表示后面的文档属于什么MIME类型。
|
public const string Date = "Date";//当前的GMT时间。
|
public const string LastModified = "Last-Modified";//文档的最后改动时间
|
public const string AcceptRanges = "Accept-Ranges";//是否支持范围请求
|
public const string Range = "Range";//请求范围
|
}
|
|
//Android 动态申请的权限列表
|
public static class AndroidPermissions
|
{
|
public const string RECORD_AUDIO = "android.permission.RECORD_AUDIO"; //录音
|
|
}
|