jeff 355af09ce8 統測活動 決賽名單計算追加「班級流水號」欄位 7 månader sedan
..
CosmosDBTriggers 2fe053b4fa Merge branch 'develop' of http://52.130.252.100:10000/TEAMMODEL/TEAMModelOS into develop 9 månader sedan
DI c90242002f update 11 månader sedan
Lang 3f53c1c51e update 8 månader sedan
Properties 898296328a update 11 månader sedan
.gitignore b05d92da5d update 11 månader sedan
IESCosmosDBTrigger.cs c033de33a5 統測架構 10 månader sedan
IESHttpTrigger.cs 81215b3cd8 Merge branch 'develop' into develop-cosmosdb-v3 11 månader sedan
IESServiceBusTrigger.cs 355af09ce8 統測活動 決賽名單計算追加「班級流水號」欄位 7 månader sedan
IESTimerTrigger.cs 9140eb4821 1.取得IOT所有資料並生成每日學校產品分析統計data 追加指定生成月日 10 månader sedan
Program.cs 80912f3a3d update 11 månader sedan
TEAMModelOS.Function.csproj 158fa4627f update 7 månader sedan
host.json c90242002f update 11 månader sedan
readme.md c90242002f update 11 månader sedan

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