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-expressions-patterns.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Most expressions are wrapped in curly braces. For example, in a queue trigger fu
18
18
19
19
It's a best practice to manage secrets and connection strings by using app settings rather than configuration files. This practice limits access to these secrets and makes it safe to store files such as `function.json` in public source-control repositories.
20
20
21
-
App settings are also useful whenever you want to change configuration based on the environment. For example, in a test environment, you might want to monitor a different container for queue storage or blob storage.
21
+
App settings are also useful whenever you want to change a configuration based on the environment. For example, in a test environment, you might want to monitor a different container for queue storage or blob storage.
22
22
23
23
Binding expressions for app settings are identified differently from other binding expressions: they're wrapped in percent signs rather than curly braces. For example, if the path for a blob output binding is `%Environment%/newblob.txt` and the `Environment` app setting value is `Development`, a blob is created in the `Development` container.
For projects that use a compiled C# class library, you install the NuGet packages for the extensions that you need as you normally would in your apps. For more information, see the [Visual Studio Code developer guide](functions-develop-vs-code.md?tabs=csharp#install-binding-extensions) or the [Visual Studio developer guide](functions-develop-vs.md#add-bindings).
37
37
@@ -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 steps
66
+
## Next step
67
67
68
68
> [!div class="nextstepaction"]
69
69
> [Azure Functions trigger and binding example](./functions-bindings-example.md)
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-triggers-bindings.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ You can mix and match bindings to suit your function's specific scenario. Bindin
20
20
21
21
Triggers and bindings let you avoid hardcoding access to other services. Your function receives data (for example, the content of a queue message) in function parameters. You send data (for example, to create a queue message) by using the return value of the function.
22
22
23
-
Consider the following examples of how you could implement functions.
23
+
Consider the following examples of how you could implement functions:
@@ -39,7 +39,7 @@ These examples aren't meant to be exhaustive, but they illustrate how you can us
39
39
40
40
Not all services support both input and output bindings. See your specific binding extension for [specific code examples for bindings](#bindings-code-examples).
41
41
42
-
Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of the article.
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
43
44
44
Trigger and binding names are limited to alphanumeric characters and `_`, the underscore.
45
45
@@ -54,7 +54,7 @@ The HTTP trigger (`HttpTrigger`) is defined on the `Run` method for a function n
This example shows the `MultiResponse` object definition. The object definition returns `HttpResponse` to the HTTP request and writes a message to a storage queue by using a `QueueOutput` binding.
57
+
This example shows the `MultiResponse` object definition. The object definition returns `HttpResponse` to the HTTP request and writes a message to a storage queue by using a `QueueOutput` binding:
0 commit comments