public DefaultYunClient(string serverUrl, string appKey, string appSecret)
 {
     this.appKey    = appKey;
     this.appSecret = appSecret;
     this.serverUrl = serverUrl;
     this.webUtils  = new WebUtils();
     this.topLogger = new DefaultYunLogger();
 }
 public void SetTopLogger(IYunLogger topLogger)
 {
     this.topLogger = topLogger;
 }