黄贺彬 05b6dd8b00 版本号 il y a 3 mois
..
CosmosDBTriggers 9041bbb582 活動報名班級追加紀錄各活動階段架構:各班級熱身賽、決賽更新評量後,改變活動階段資料 il y a 3 mois
JsonFile 6621eb6379 [BI]取得IOT資料時追加IP分析地理位置-架構調整:SDK移除地理位置JSON檔,改以各應用端取得地理位置資料後傳入 il y a 3 mois
Lang 3f53c1c51e update il y a 8 mois
Properties 898296328a update il y a 11 mois
Services 9639f352bd 追加IP換算地理位置機制 (途中) il y a 3 mois
.gitignore b05d92da5d update il y a 11 mois
IESCosmosDBTrigger.cs c033de33a5 統測架構 il y a 10 mois
IESHttpTrigger.cs baf51f0e7b update il y a 5 mois
IESServiceBusTrigger.cs 89368b6aed update il y a 5 mois
IESTimerTrigger.cs 6621eb6379 [BI]取得IOT資料時追加IP分析地理位置-架構調整:SDK移除地理位置JSON檔,改以各應用端取得地理位置資料後傳入 il y a 3 mois
Program.cs 9639f352bd 追加IP換算地理位置機制 (途中) il y a 3 mois
TEAMModelOS.Function.csproj 05b6dd8b00 版本号 il y a 3 mois
host.json c90242002f update il y a 11 mois
readme.md c90242002f update il y a 11 mois

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