Gets or sets a value indicating whether the function should be invoked immediately on startup. After the initial startup run, the function will be run on schedule thereafter.
RunOnStartup = true
[FunctionName("MyFunction01")]
public static void Run([TimerTrigger("0 10 * * * *", RunOnStartup = true)] TimerInfo myTimer, ILogger log)
{
}
Comments