Reputation: 133
How can i consume rest based web services using nancyfx? does nancy provides inbuilt rest client like httpclient or restsharp ?
I have tried using restsharp and httpclient for the same but not able to find any ways for nancyfx library.
Upvotes: 0
Views: 549
Reputation: 18796
NancyFX is a web framework like MVC / Web API, it's not a client library for making web requests.
You would still use HttpClient or RestSharp for that.
Upvotes: 1