简体   繁体   中英

How to consume REST in C# including PUT, POST and DELETE?

I have a REST webservice that I need to consume in C#. I need support for more than just GET requests though. I need everything that is done by REST including GET, PUT, POST, and DELETE. What is the best way of interfacing with this? I do not see anything for HTTPRequest to be able to do POST or anything other than GET unless you construct your own headers(which I prefer not to)

Is there some easy and lightweight way to fully consume REST webservices in C#?

Check out the series of screencasts on WCF REST up on Channel 9:

http://channel9.msdn.com/tags/REST%20Starter%20Kit%20endpoint%20screencasts/

There's a great one amongst those called Consuming REST services with HttpClient which should give you a nice step-by-step instruction on how to do all of this.

Also check out the WCF REST Developer Center on MSDN for more articles, blog posts, and tutorial on WCF and REST.

The HttpClient in the Microsoft.Http namespace that comes with the WCF Rest Starter kit is very helpful.

Aaron Skonnard from Pluralsight created several articles and screencasts highlighting the HttpClient.

There are several more resources that he posted to the Pluralsight blog in March 2009 covering the HttpClient.

您可以查看CodePlex上的REST Starter Kit

HTTPRequest is the request currently processed in a ASP app.

To make outboud HTTP REST requests, use the HttpWebRequest class. It has properties like Method (POST, PUT, DELETE) and you can write your payload into the request stream returned by GetRequestStream (or its async counterpart for high performance).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM