November 2018
Intermediate to advanced
424 pages
10h 55m
English
Create a new HTTP trigger and replace the following code, which just prints a message when it is executed:
using System.Net;using Microsoft.AspNetCore.Mvc;public static async Task<IActionResult> Run(HttpRequest req, ILogger log){return (ActionResult)new OkObjectResult($"Hello User! Thanks for keeping me Warm");}