You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// create an http client...
var client = HttpClient.Create("http://api.myapp.com");
// execute a GET request on the url "products/5", on a 200 response deserialize the body as a Product
var product = client.Get("products/:id", new { id = 5 }).OnOk().As<Product>();
// update the product
product.Name = "Styx's Greatest Hits";
// save the product
client.Patch(product, "products").IsOk();