How to write a REST API wrapper in C #?

The application I'm using has a REST API. In C #, is there an example of a shell entry for calling API functions?

thanks

+5
source share
1 answer

Writing your own wrapper to use REST is not terribly difficult. Any client will use HttpWebRequest and HttpWebResponse to execute GET requests and get results. (There are other objects in the .Net Framework that you can use, but I found them most useful.)

. ( , xml, ..), . : , . , .

+4

All Articles