public Comment Edit(long id, SaveComment comment) { return client.Patch(comment, "gists/comments/:id", new { id }).OnOk().As<Comment>(); }
public Comment Create(long id, SaveComment comment) { return client.Post(comment, "gists/:id/comments", new { id }).On(HttpStatusCode.Created).As<Comment>(); }