Reputation: 1
Now I'm creating a sample web API. It has been set up in IIS and can access it via URL. I want to call that url via window application. How can I call that url without browser launch.
Upvotes: 0
Views: 515
Reputation: 7452
Use RestSharp or HttpClient if you want lower level access.
Reputation: 2992
HttpClient or WSDL, subject to the nature of your web API.
Reputation: 887459
Use the aptly-named HttpClient class.
HttpClient
Upvotes: 1