using System; using System.Collections.Generic; using System.Linq; using System.Text; using IStation.Bimface; namespace IStation { /// /// Bimface客户端初始化 /// public sealed partial class BimfaceClient { //私有构造函数 private BimfaceClient(string AppKey, string AppSecret) { _appkey = AppKey; _appsecret = AppSecret; _accesstoken = null; _viewtokenDic = new Dictionary(); _expiretime = new ExpireTime(); } private string _appkey;//app键 private string _appsecret;//app值 private string _accesstoken;//令牌 private Dictionary _viewtokenDic;//视图令牌字典 private ExpireTime _expiretime;//过期时间设置类 } }