Skip to content

Commit 4ef573c

Browse files
authored
Merge pull request #95823 from craigshoemaker/patch-3
Add sections
2 parents be3f6d1 + 5e7b092 commit 4ef573c

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

articles/azure-functions/functions-bindings-return-value.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,7 @@ If there are multiple output bindings, use the return value for only one of them
2525

2626
In C# and C# script, alternative ways to send data to an output binding are `out` parameters and [collector objects](functions-reference-csharp.md#writing-multiple-output-values).
2727

28-
See the language-specific example showing use of the return value:
29-
30-
* [C#](#c-example)
31-
* [C# script (.csx)](#c-script-example)
32-
* [F#](#f-example)
33-
* [JavaScript](#javascript-example)
34-
* [Python](#python-example)
35-
36-
## C# example
28+
# [C#](#tab/csharp)
3729

3830
Here's C# code that uses the return value for an output binding, followed by an async example:
3931

@@ -59,7 +51,7 @@ public static Task<string> Run([QueueTrigger("inputqueue")]WorkItem input, ILogg
5951
}
6052
```
6153

62-
## C# script example
54+
# [C# Script](#tab/csharp-script)
6355

6456
Here's the output binding in the *function.json* file:
6557

@@ -92,7 +84,7 @@ public static Task<string> Run(WorkItem input, ILogger log)
9284
}
9385
```
9486

95-
## F# example
87+
# [F#](#tab/fsharp)
9688

9789
Here's the output binding in the *function.json* file:
9890

@@ -114,7 +106,7 @@ let Run(input: WorkItem, log: ILogger) =
114106
json
115107
```
116108

117-
## JavaScript example
109+
# [JavaScript](#tab/javascript)
118110

119111
Here's the output binding in the *function.json* file:
120112

@@ -137,7 +129,7 @@ module.exports = function (context, input) {
137129
}
138130
```
139131

140-
## Python example
132+
# [Python](#tab/python)
141133

142134
Here's the output binding in the *function.json* file:
143135

@@ -160,6 +152,8 @@ def main(input: azure.functions.InputStream) -> str:
160152
})
161153
```
162154

155+
---
156+
163157
## Next steps
164158

165159
> [!div class="nextstepaction"]

0 commit comments

Comments
 (0)