I’d like to use RestSharp to make a POST to a TFS server, but I need to do some fairly sophisticated manipulations on the web request before the call is made.
To that end, I need access to the underlying HttpWebRequest to make a “Prepare” style call.
Is that possible with RestSharp?
RestSharp doesn’t expose HttpWebRequest directly so you’re probably best served writing your own custom wrapper.