예제 #1
0
 public HttpSession(ApiCtx apiCtx)
 {
     this.config = apiCtx.Config;
     this.ctx    = apiCtx;
     // setup http client
     HttpClient = new HttpClient(new HttpClientHandler()
     {
         UseCookies = false
     });
     HttpClient.Timeout = TimeSpan.FromMilliseconds(config.HttpTimeout);
 }
예제 #2
0
 public API(ApiCtx ctx)
 {
     this.Ctx = ctx;
 }
예제 #3
0
 public SMS(ApiCtx ctx)
     : base(ctx)
 {
 }
예제 #4
0
 public WebServer(ApiCtx ctx)
     : base(ctx)
 {
 }
예제 #5
0
 public User(ApiCtx ctx)
     : base(ctx)
 {
 }