lixiaojun
2024-03-26 9168f460773c1b58fac7ef7e2decf291ca8b2de0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace Yw
{
    /// <summary>
    /// Bimface客户端初始化
    /// </summary>
    public sealed partial class BimfaceClient
    {
        //私有构造函数
        private BimfaceClient(string AppKey, string AppSecret)
        {
            _appkey = AppKey;
            _appsecret = AppSecret;
            _accesstoken = null;
            _viewtokenDic = new Dictionary<long, string>();
            _expiretime = new ExpireTime();
        }
 
        private string _appkey;//app键
        private string _appsecret;//app值
        private string _accesstoken;//令牌
        private Dictionary<long, string> _viewtokenDic;//视图令牌字典
        private ExpireTime _expiretime;//过期时间设置类
    }
}