Skip to content

Commit 33b2b35

Browse files
committed
Remove the return values article
1 parent c964a1e commit 33b2b35

5 files changed

+15
-180
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"redirections": [
3+
{
4+
"source_path_from_root": "/articles/azure-functions/functions-bindings-return-value.md",
5+
"redirect_url": "/azure/azure-functions/functions-triggers-bindings",
6+
"redirect_document_id": false
7+
},
38
{
49
"source_path_from_root": "/articles/azure-functions/durable/durable-functions-configure-durable-functions-with-credentials.md",
510
"redirect_url": "/azure/azure-functions/durable/durable-functions-configure-managed-identity",
611
"redirect_document_id": false
7-
}
12+
}
813
]
914
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,6 @@ The binding expression `DateTime` resolves to `DateTime.UtcNow`. The following b
317317

318318
In C# and other .NET languages, you can use an imperative binding pattern, as opposed to the declarative bindings in *function.json* and attributes. Imperative binding is useful when binding parameters need to be computed at runtime rather than design time. To learn more, see the [C# developer reference](functions-dotnet-class-library.md#binding-at-runtime) or the [C# script developer reference](functions-reference-csharp.md#binding-at-runtime).
319319

320-
## Next steps
321-
> [!div class="nextstepaction"]
322-
> [Using the Azure Function return value](./functions-bindings-return-value.md)
320+
## Related content
321+
322+
+ [Azure Functions triggers and bindings concepts](functions-triggers-bindings.md)

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

Lines changed: 0 additions & 167 deletions
This file was deleted.

articles/azure-functions/functions-dotnet-class-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ Each binding has its own supported types; for instance, a blob trigger attribute
289289

290290
## Binding to method return value
291291

292-
You can use a method return value for an output binding, by applying the attribute to the method return value. For examples, see [Triggers and bindings](./functions-bindings-return-value.md).
292+
You can use a method return value for an output binding, by applying the attribute to the method return value. For examples, see [Triggers and bindings](./functions-triggers-bindings.md).
293293

294294
Use the return value only if a successful function execution always results in a return value to pass to the output binding. Otherwise, use `ICollector` or `IAsyncCollector`, as shown in the following section.
295295

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

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,14 @@ The way that the function is defined depends on the version of Python for Functi
171171

172172
### [v2](#tab/python-v2)
173173

174-
In Python v2, you define the function directly in code using decorators:
174+
In Python for Functions version 2, you define the function directly in code using decorators:
175175

176176
:::code language="python" source="~/functions-docs-python-v2/function_app.py" range="4-9" :::
177177

178178

179179
### [v1](#tab/python-v1)
180180

181-
In Python v1, this example `function.json` file defines the function:
181+
In Python for Functions version 1, this example `function.json` file defines the function:
182182

183183
:::code language="json" source="~/functions-docs-powershell/functions-add-output-binding-storage-queue-cli/HttpExample/function.json" range="3-26":::
184184

@@ -207,15 +207,12 @@ Use the following table to find more examples of specific binding types that sho
207207

208208
You can create custom input and output bindings. Bindings must be authored in .NET, but can be consumed from any supported language. For more information about creating custom bindings, see [Creating custom input and output bindings](https://github.com/Azure/azure-webjobs-sdk/wiki/Creating-custom-input-and-output-bindings).
209209

210-
## Resources
210+
## Related content
211+
211212
- [Binding expressions and patterns](./functions-bindings-expressions-patterns.md)
212-
- [Using the Azure Function return value](./functions-bindings-return-value.md)
213213
- [How to register a binding expression](./functions-bindings-register.md)
214214
- Testing:
215215
- [Strategies for testing your code in Azure Functions](functions-test-a-function.md)
216216
- [Manually run a non HTTP-triggered function](functions-manually-run-non-http.md)
217217
- [Handling binding errors](./functions-bindings-errors.md)
218-
219-
## Next steps
220-
> [!div class="nextstepaction"]
221-
> [Register Azure Functions binding extensions](./functions-bindings-register.md)
218+
-

0 commit comments

Comments
 (0)