Beispiel #1
0
 private string Url(string apiMethod, Args args)
 {
     if (!args.ContainsKey("token"))
     {
         args["token"] = _token;
     }
     return(_urlBuilder.Url(apiMethod, args));
 }
Beispiel #2
0
 private string Url(string apiMethod) =>
 _urlBuilder.Url(apiMethod, new Args());
Beispiel #3
0
 private string Url(string apiMethod, Args args = null) =>
 _urlBuilder.Url(apiMethod, args ?? new Args());