Rest client in NancyFX?

548 Views Asked by At

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.

1

There are 1 best solutions below

0
On BEST ANSWER

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.