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
| using Microsoft.Azure.WebJobs; | |
| using Microsoft.Azure.WebJobs.Host; | |
| using System.ComponentModel.DataAnnotations; | |
| namespace FunctionApp1 | |
| { | |
| public static class Function1 | |
| { | |
| [FunctionName("Function1")] | |
| public static void Run([TimerTrigger("0 */1 * * * *")]TimerInfo myTimer, TraceWriter log) |
NewerOlder