Black Rock Reporting Azure Function
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Function1.cs 428B

12345678910111213141516
  1. using System;
  2. using Microsoft.Azure.WebJobs;
  3. using Microsoft.Azure.WebJobs.Host;
  4. using Microsoft.Extensions.Logging;
  5. namespace BlackRockReportFunction
  6. {
  7. public class Function1
  8. {
  9. [FunctionName("Function1")]
  10. public void Run([TimerTrigger("0 */5 * * * *")]TimerInfo myTimer, ILogger log)
  11. {
  12. log.LogInformation($"C# Timer trigger function executed at: {DateTime.Now}");
  13. }
  14. }
  15. }