三国卡牌客户端基础资源仓库
yyl
4 天以前 cec146fc3fe287928e075c79ece20a20a9b16b20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 
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"; //录音
 
}