Skip to content

Commit 5038eb2

Browse files
committed
incorporating feedback
1 parent 1379122 commit 5038eb2

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

articles/azure-functions/functions-bindings-expressions-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure Functions Binding Expressions and Patterns
33
description: Learn how to create various Azure Functions binding expressions based on common patterns.
44

5-
ms.topic: reference
5+
ms.topic: how-to
66
ms.devlang: csharp
77
ms.custom: devx-track-csharp
88
ms.date: 02/18/2019

articles/azure-functions/functions-bindings-register.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ To manually install binding extensions:
6363
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).
6464
::: zone-end
6565

66-
## Next step
66+
## Related content
6767

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)
69+
- [Azure Functions extension bundles](extension-bundles.md)

articles/azure-functions/functions-triggers-bindings.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,6 @@ These examples aren't meant to be exhaustive, but they illustrate how you can us
3737
3838
## Trigger and binding definitions
3939

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-
4640
The following example shows an HTTP-triggered function with an output binding that writes a message to an Azure Storage queue.
4741

4842
::: zone pivot="programming-language-csharp"
@@ -96,8 +90,6 @@ In Node.js for Azure Functions version 3, you configure triggers and bindings in
9690

9791
::: zone-end
9892

99-
This example is an HTTP-triggered function that creates a queue item for each received HTTP request:
100-
10193
::: zone pivot="programming-language-javascript"
10294
### [v4](#tab/node-v4)
10395

@@ -203,6 +195,14 @@ In Python for Azure Functions version 1, this example `function.json` file defin
203195

204196
::: zone-end
205197

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+
206206
## Task to add bindings to a function
207207

208208
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
231231

232232
- [Binding expressions and patterns](./functions-bindings-expressions-patterns.md)
233233
- [Register Azure Functions binding extensions](./functions-bindings-register.md)
234-
- Testing:
235-
- [Strategies for testing your code in Azure Functions](functions-test-a-function.md)
236-
- [Manually run a non-HTTP-triggered function](functions-manually-run-non-http.md)
234+
- [Manually run a non-HTTP-triggered function](functions-manually-run-non-http.md)
237235
- [Handling binding errors](./functions-bindings-errors.md)

0 commit comments

Comments
 (0)