Exemple #1
0
 public ApiRequestCollection(string baseUrl, HttpMethod method, string path, string scope, ParsedParameters parameters)
 {
     this.BaseUrl    = baseUrl;
     this.Method     = method;
     this.Path       = path;
     this.Scope      = scope;
     this.Parameters = parameters;
 }
Exemple #2
0
 public ApiRequest(string baseUrl, string path, string scope, HttpMethod method, ParsedParameters parameters)
 {
     BaseUrl    = baseUrl;
     Path       = path;
     Scope      = scope;
     Method     = method;
     Parameters = parameters;
 }