Login
Remember
Register
Ask a Question
What is Triggers in Azure Functions?
0
votes
asked
Mar 16, 2022
in
Azure Function
by
sharadyadav1986
What is Triggers in Azure Functions?
azure-function-trigger
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 16, 2022
by
sharadyadav1986
Triggers are the events that cause a function to execute. A trigger specifies how a function is called, and each function must have only one. Triggers contain associated data, which is frequently provided as the function's payload.
...