0

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.

Ronnie Kapoor
  • 133
  • 2
  • 12

1 Answers1

1

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.

Phill
  • 18,398
  • 7
  • 62
  • 102