I have my own Web API application in which i want to call the another api which is on server. How can i do that ?
var result = url(http://54.193.102.251/CBR/api/User?EmpID=1&ClientID=4&Status=true);
// Something like this.
I have my own Web API application in which i want to call the another api which is on server. How can i do that ?
var result = url(http://54.193.102.251/CBR/api/User?EmpID=1&ClientID=4&Status=true);
// Something like this.
You can use
HttpClient. Here is a sample ofasyncmethod which calls your API: