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-return-value.md
+7-13Lines changed: 7 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,15 +25,7 @@ If there are multiple output bindings, use the return value for only one of them
25
25
26
26
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).
27
27
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)
37
29
38
30
Here's C# code that uses the return value for an output binding, followed by an async example:
39
31
@@ -59,7 +51,7 @@ public static Task<string> Run([QueueTrigger("inputqueue")]WorkItem input, ILogg
59
51
}
60
52
```
61
53
62
-
## C# script example
54
+
#[C# Script](#tab/csharp-script)
63
55
64
56
Here's the output binding in the *function.json* file:
0 commit comments