November 2018
Intermediate to advanced
424 pages
10h 55m
English
Perform the following steps:
public static class HttpTriggerWithMSI { [FunctionName("HttpTriggerWithMSI")] public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)]HttpRequestMessage req, TraceWriter log) { log.Info("C# HTTP trigger function processed a request."); string firstname = string.Empty, lastname = string.Empty, email = string.Empty, devicelist = string.Empty; dynamic data = await req.Content.ReadAsAsync<object>(); firstname = data?.firstname; lastname ...