CrazyIter_Bin c073593234 update há 11 meses atrás
..
CosmosDBTriggers c073593234 update há 11 meses atrás
DI c90242002f update há 11 meses atrás
Lang d5264e8ff8 update há 11 meses atrás
Properties 898296328a update há 11 meses atrás
.gitignore b05d92da5d update há 11 meses atrás
IESCosmosDBTrigger.cs c073593234 update há 11 meses atrás
IESHttpTrigger.cs 14b5612931 update CosmosDB V3方法替换修改 há 11 meses atrás
IESServiceBusTrigger.cs c073593234 update há 11 meses atrás
IESTimerTrigger.cs 63694adecd 編碼由GB2312改為UTF8 há 11 meses atrás
Program.cs 80912f3a3d update há 11 meses atrás
TEAMModelOS.Function.csproj 80912f3a3d update há 11 meses atrás
host.json c90242002f update há 11 meses atrás
readme.md c90242002f update há 11 meses atrás

readme.md

TimerTrigger - C#

The TimerTrigger makes it incredibly easy to have your functions executed on a schedule. This sample demonstrates a simple use case of calling your function every 5 minutes.

How it works

For a TimerTrigger to work, you provide a schedule in the form of a cron expression(See the link for full details). A cron expression is a string with 6 separate expressions which represent a given schedule via patterns. The pattern we use to represent every 5 minutes is 0 */5 * * * *. This, in plain text, means: "When seconds is equal to 0, minutes is divisible by 5, for any hour, day of the month, month, day of the week, or year".

Learn more

Documentation