user3686002
user3686002

Reputation: 1

How to call Web API url via window application?

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

Answers (3)

Yaur
Yaur

Reputation: 7452

Use RestSharp or HttpClient if you want lower level access.

Upvotes: 0

Lee
Lee

Reputation: 2992

HttpClient or WSDL, subject to the nature of your web API.

Upvotes: 0

SLaks
SLaks

Reputation: 887459

Use the aptly-named HttpClient class.

Upvotes: 1

Related Questions