Functions.Templates/Templates/TimerTrigger-CSharp/TimerTriggerCSharp.cs (15 lines of code) (raw):
using System;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.Extensions.Logging;
namespace Company.Function
{
public class TimerTriggerCSharp
{
[FunctionName("TimerTriggerCSharp")]
public void Run([TimerTrigger("ScheduleValue")]TimerInfo myTimer, ILogger log)
{
log.LogInformation($"C# Timer trigger function executed at: {DateTime.Now}");
}
}
}