Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Created September 11, 2016 18:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbellmann/1fd8d933c878f79ed4103a40d848ad8a to your computer and use it in GitHub Desktop.
Save gbellmann/1fd8d933c878f79ed4103a40d848ad8a to your computer and use it in GitHub Desktop.
Default C# Azure Function code triggered by a timer
using System;
public static void Run(TimerInfo myTimer, TraceWriter log)
{
log.Info($"Función con trigger por timer en C# ejecutada el {DateTime.Now}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment