I\'m having trouble deserializing the following XML w/ restsharp <Xid> <Id>118</Id> <Active>true</Active>
I have checked out the documentation for restsharp and also googled for a solution, but unable to find a solution for this problem:
i have some trouble getting this to work: my xml looks like: <root> <item> <id></id>
I\'m having tr开发者_StackOverflow中文版ouble figuring out how to make a GET request using RestSharp on Windows Phone 7. All of the examples show making a POST request, but I just need GET. How do I d
I\'ve recently started using RestSharp to consume a REST service which uses XML. It makes deserializing objects from XML to a collection of custom objects trivial. But my question is what is the best
I am trying to add a cookie to a request using RestSharp but in fiddler2 I don\'t see the cookie in the request and service call is failing.Is there some trick to adding a cookie to the RestRequest?
I implemented RestSharp succesfully in my WP7 application, but one issue remains: When I load resources from the server (for example a GET request on http://localhost:8080/cars), the first time the
I\'m trying to take an RSS feed and deserialize it into a list of rssEntry objects. var Client = new RestClient(\"url here\");
I\'m trying to use RestSharp to consume a web service. So far everything\'s gone very well (cheers to John Sheehan and all contributors!) but I\'ve run into a snag. Say I want to insert XML into the b
I\'m trying to upload a photo to a REST api in a Windows Phone 7 application using RestSharp for my Gets/Posts.