Please enable JavaScript.
Coggle requires JavaScript to display documents.
Azure Function - Coggle Diagram
Azure Function
Binding expression :rocket:
Appseting binding syntax
with % sign
run locally
, app settings values will resolved from file
local.setting.json
:star:
remain expression syntax
with curly braces {}
{filename} binding
JSON properties binding :star:
eg: JSON object {"BlobName": "helloword.txt"} -> use binding {BlobName} to get value from BlobName property
Support dot . property binding
{rand-guid} => create random GUID
{CurrentTime} => resolve current DateTime.UtcNow
Declarative bindings in function.json
Imperative bindings in C# class
Service Plan
Premium Plan
Have pre-warmed instances
Avoid cold start time
Consumption plan
Have cold-start time
Signatures
C#
Trigger binding
input binding
output binding
ILogger
The order of paramters is not matter
Azure Function App Project :question: