Created
October 25, 2018 13:05
-
-
Save vainolo/32fa52fafd22e9ff46408dff23963b03 to your computer and use it in GitHub Desktop.
Azure Functions – Part 2: Serving HTML Pages with Azure Functions - Option 2
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
// Option 2, read from local file | |
var response = new HttpResponseMessage(HttpStatusCode.OK); | |
var stream = new FileStream(@"d:\home\site\wwwroot\HelloWorldHTML\hello.html", FileMode.Open); | |
response.Content = new StreamContent(stream); | |
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