Would be super helpful if this method were public, then we could get typed values out of generic objects returned from a parse cloud. i.e:
//cloud code
response.success({ object1:parseObject, object2:anotherParseObject })
//Unity client
IDictionary<string, object> result = response;
ParseObject object1 = ParseClient.ConvertTo<ParseObject>(result["object1"]);