August 2017
Intermediate to advanced
468 pages
12h 5m
English
Let's take a look at the following steps for implementing the average result function:
The generated function code in AverageResults.cs will be as follows:
[FunctionName("AverageResults")] public static async Task Run([TimerTrigger("0 0 * * * *")]TimerInfo myTimer, TraceWriter log) { log.Info($"C# Timer trigger function executed at: {DateTime.Now}"); }
When you compile the function, the ...