Esempio n. 1
0
 /// <summary>
 ///
 /// </summary>
 public ClientMedia(String AppKey, String AppSecret)
 {
     this.AppKey    = AppKey;
     this.AppSecret = AppSecret;
     handler        = new ApiHandler();
     handler        = new MediaHandler(handler);
     handler        = new RetryHandler(handler);
 }
Esempio n. 2
0
 /// <summary>
 ///
 /// </summary>
 public ClientMedia()
 {
     this.CorpId    = CfgCorpId;
     this.AppKey    = CfgAppKey;
     this.AppSecret = CfgAppSecret;
     handler        = new ApiHandler();
     handler        = new MediaHandler(handler);
     handler        = new RetryHandler(handler);
 }
Esempio n. 3
0
 /// <summary>
 ///
 /// </summary>
 public ClientMedia(String AppKey, String AppSecret, String ApiServer = null)
 {
     this.AppKey    = AppKey;
     this.AppSecret = AppSecret;
     this.ApiServer = string.IsNullOrEmpty(ApiServer) ? CfgApiServer : ApiServer;
     handler        = new ApiHandler();
     handler        = new MediaHandler(handler);
     handler        = new RetryHandler(handler);
 }
Esempio n. 4
0
 /// <summary>
 ///
 /// </summary>
 public ClientMedia(String CorpId, String AppKey, String AppSecret, String SuiteTicket)
 {
     this.CorpId      = CorpId;
     this.AppKey      = AppKey;
     this.AppSecret   = AppSecret;
     this.SuiteTicket = SuiteTicket;
     handler          = new ApiHandler();
     handler          = new MediaHandler(handler);
     handler          = new RetryHandler(handler);
 }