Esempio n. 1
0
 public DelveCloudClient(Connection conn) : base(DelveClient.GetHttpClient(conn.BaseUrl, conn.VerifySSL, conn.ConnectionTimeout))
 {
     this.conn             = conn;
     this.conn.CloudClient = this;
     this.BaseUrl          = conn.BaseUrl.ToString();
 }
 public GeneratedDelveClient(Connection conn)
 {
     this.conn   = conn;
     _httpClient = DelveClient.GetHttpClient(conn.BaseUrl, conn.VerifySSL, conn.ConnectionTimeout);
     _settings   = new System.Lazy <Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
 }