Any guide or documents exist on using the helper functions in the SDK.
Quick example of a question I have, and figure a quick easy answer must exist - but do not see documented.
I want to do a rest post, as the SDK has some issues that only directly using rest will work around.
string body = XML_FIRST_LINE+"\n"+"<Body parts that are required for rest call />";
var resp = RestUtil.Post(_client, vapp.Reference.href, body, type, "UTF-8")
Task task = HOW_TO_CONVERT(resp);