CrazyIter_Bin 2883446a4f update 5 месяцев назад
..
CosmosDBTriggers ec5491992c Merge branch 'develop' of http://163.228.141.122:3000/TEAMMODEL/TEAMModelOS into develop 5 месяцев назад
Lang 3f53c1c51e update 8 месяцев назад
Properties 898296328a update 11 месяцев назад
.gitignore b05d92da5d update 11 месяцев назад
IESCosmosDBTrigger.cs c033de33a5 統測架構 10 месяцев назад
IESHttpTrigger.cs baf51f0e7b update 5 месяцев назад
IESServiceBusTrigger.cs baf51f0e7b update 5 месяцев назад
IESTimerTrigger.cs 2883446a4f update 5 месяцев назад
Program.cs baf51f0e7b update 5 месяцев назад
TEAMModelOS.Function.csproj 71fb3f0b16 update 6 месяцев назад
host.json c90242002f update 11 месяцев назад
readme.md c90242002f update 11 месяцев назад

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