Created
October 25, 2018 13:10
-
-
Save vainolo/6e99d772155c8e1ce201f7d9484a55a6 to your computer and use it in GitHub Desktop.
Azure Functions – Part 1: Getting Started - Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Net; | |
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log) | |
{ | |
log.Info("C# HTTP trigger function processed a request."); | |
return req.CreateResponse(HttpStatusCode.OK, "Hello World"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment