What is the best way to consume REST web services?

2019-03-08 03:21发布

What's the best way to consume REST web services from .NET?

7条回答
Fickle 薄情
2楼-- · 2019-03-08 03:47

In my opinion, the easiest way to implement a REST API is to use Service Stack:

http://www.servicestack.net/

I my last Windows project I made a proof of concept in WCF and ServiceStack and the Service Stack application was faster (you can look for measurements in the Service Stack site) and easier to maintain (less code, less magic implementation). And the most important point, it helps you to focus in simplicity.

查看更多
登录 后发表回答