Last Updated: February 25, 2016
·
763
· jonnii

making http easy with speakeasy..

// create a client
var client = HttpClient.Create("http://example.com/api");

// get some companies!
var companies = client.Get("companies").OnOk().As<List<Company>>();

Easy breezy.

Install SpeakEasy using nuget (install-package speakeasy).