Exemplo n.º 1
0
 public ApiContext(string token, YbConfig config)
 {
     this.token = new AccessToken()
     {
         access_token = token, expires = 0, userid = 0
     };
     _config = config;
 }
Exemplo n.º 2
0
 public ShareApi(AccessToken token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 3
0
 public FriendApi(AccessToken token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 4
0
 public ShareApi(string token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 5
0
 public BaseApi(AccessToken token, YbConfig config)
 {
     this.context = new ApiContext(token, config);
 }
Exemplo n.º 6
0
 public FriendApi(string token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 7
0
 public UserApi(string token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 8
0
 public GroupApi(AccessToken token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 9
0
 public ApiContext(AccessToken token, YbConfig config) : this(token)
 {
     _config = config;
 }
Exemplo n.º 10
0
 public UserApi(AccessToken token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 11
0
 public MsgApi(string token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 12
0
 public SchoolApi(AccessToken token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 13
0
 public SchoolApi(string token, YbConfig config) : base(token, config)
 {
 }
Exemplo n.º 14
0
 public ApiContext(AccessToken token, YbConfig config)
 {
     this.token = token;
     _config    = config;
 }
Exemplo n.º 15
0
 public BaseApi(string token, YbConfig config)
 {
     this.context = new ApiContext(token, config);
 }
Exemplo n.º 16
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="config">配置</param>
 public OauthApi(YbConfig config) : base("", config)
 {
 }
Exemplo n.º 17
0
 public GroupApi(string token, YbConfig config) : base(token, config)
 {
 }