Exemplo n.º 1
0
 async Task <T> ProcessAuthenticated <T>(BaseInfo args)
 {
     return(await AccessRestApi.InvokeHttpCall <T>(
                (string)args["request"], args, _apiKey, _secretKey));
 }
Exemplo n.º 2
0
 async Task <T> ProcessPublic <T>(string path)
 {
     return(await AccessRestApi.InvokeHttpCall <T>(path));
 }