Didn't see this in the docs anywhere and wondering if it is supported to return JSON Responses as JSONP, as in
[WebGet(UriTemplate = "?callback={callback}]
string GetData(string callback)
and then populate the return value with whatever was passed in the callback variable, aka if the variable that was passed was "cb" it would return:
cb({"key":"value"})
instead of just
{"key":"value"}