I am playing with Azure Functions. However, I feel like I\'m stumped on something pretty simple. I\'m trying to figure out how to return some basic JSON. I\'m not sure how to cr
You can change the method signature into:
public static async Task Run(HttpRequestMessage req, TraceWriter log)
and it will allow JSON data to be returned.