Skip to content

Instantly share code, notes, and snippets.

@vainolo
Created October 25, 2018 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vainolo/bd6ab640d609bebb848e8e9d6f4f40b1 to your computer and use it in GitHub Desktop.
Save vainolo/bd6ab640d609bebb848e8e9d6f4f40b1 to your computer and use it in GitHub Desktop.
Azure Functions – Part 2: Serving HTML Pages with Azure Functions - Option 1
using System.Net;
using System.Net.Http.Headers;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
log.Info("C# HTTP trigger function processed a request.");
// Option 1, coded HTML
var response = req.CreateResponse(HttpStatusCode.OK, "Hello ");
response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html");
return response;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment