少年修仙传客户端代码仓库
lcy
2024-12-16 a39c35fc6449430cd02bccb681c4a0a880e46cd9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"; //录音
 
}