You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-register.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ To manually install binding extensions:
63
63
As soon as possible, you should [switch your app back to using the latest supported extension bundle](./extension-bundles.md#defining-an-extension-bundle-reference).
64
64
::: zone-end
65
65
66
-
## Next step
66
+
## Related content
67
67
68
-
> [!div class="nextstepaction"]
69
-
>[Azure Functions trigger and binding example](./functions-bindings-example.md)
68
+
-[Azure Functions trigger and binding example](functions-triggers-bindings.md#trigger-and-binding-definitions)
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-triggers-bindings.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,12 +37,6 @@ These examples aren't meant to be exhaustive, but they illustrate how you can us
37
37
38
38
## Trigger and binding definitions
39
39
40
-
Not all services support both input and output bindings. See your specific binding extension for [specific code examples for bindings](#code-examples-for-bindings).
41
-
42
-
Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of this article.
43
-
44
-
Trigger and binding names are limited to alphanumeric characters and `_`, the underscore.
45
-
46
40
The following example shows an HTTP-triggered function with an output binding that writes a message to an Azure Storage queue.
47
41
48
42
::: zone pivot="programming-language-csharp"
@@ -96,8 +90,6 @@ In Node.js for Azure Functions version 3, you configure triggers and bindings in
96
90
97
91
::: zone-end
98
92
99
-
This example is an HTTP-triggered function that creates a queue item for each received HTTP request:
100
-
101
93
::: zone pivot="programming-language-javascript"
102
94
### [v4](#tab/node-v4)
103
95
@@ -203,6 +195,14 @@ In Python for Azure Functions version 1, this example `function.json` file defin
203
195
204
196
::: zone-end
205
197
198
+
## Binding considerations
199
+
200
+
- Not all services support both input and output bindings. See your specific binding extension for [specific code examples for bindings](#code-examples-for-bindings).
201
+
202
+
- Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of this article.
203
+
204
+
- Trigger and binding names are limited to alphanumeric characters and `_`, the underscore.
205
+
206
206
## Task to add bindings to a function
207
207
208
208
You can connect your function to other services by using input or output bindings. Add a binding by adding its specific definitions to your function. To learn how, see [Add bindings to an existing function in Azure Functions](add-bindings-existing-function.md).
@@ -231,7 +231,5 @@ You can create custom input and output bindings. Bindings must be authored in .N
231
231
232
232
-[Binding expressions and patterns](./functions-bindings-expressions-patterns.md)
0 commit comments