PainlessHttp icon indicating copy to clipboard operation
PainlessHttp copied to clipboard

The HTTP client that is so easy to use that it wont give you any headache!

Results 3 PainlessHttp issues
Sort by recently updated
recently updated
newest added

When trying to fetch an object containing a DateTime with a milliseconds part I get an exception: ```` System.Runtime.Serialization.SerializationException : There was an error deserializing the object of type MyNamespace.MyClass....

I have the following API-method: ````CS [Route("api/xyz")] [HttpPost] public IHttpActionResult PostAPIXYZ() { return Ok("ok"); } ```` Then calling it with: ````CS using PainlessHttp.Http; var config = new Configuration { BaseUrl...

Hi, First of all, awesome project! However, it seems to be a problem when the same instance of `PainlessHttp` is handling multiple request at the same time (thread-unsafe?). I have...