public TimetableClient(string developerID, string securityKey, TimetableClientHasher hasher, CompressionType type = CompressionType.GZip)
 {
     this.DeveloperID  = developerID;
     this.SecurityKey  = securityKey;
     this.Hasher       = hasher;
     this.CompressType = type;
 }
Exemple #2
0
 public TimetableClient(string developerID, string securityKey, TimetableClientHasher hasher)
 {
     this.DeveloperID = developerID;
     this.SecurityKey = securityKey;
     this.Hasher      = hasher;
 }