Skip to content

Commit f29322b

Browse files
Merge branch 'MicrosoftDocs:main' into connectedregistry-QS
2 parents d105ed0 + b323ae5 commit f29322b

10 files changed

+179
-225
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-boost/includes/azure-boost-series.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom:
1313

1414
| Size Series | Series Type | Deployment Status |
1515
|:-:|:-:|:-:|
16-
|[Msv3/Mdsv3](/azure/virtual-machines/msv3-mdsv3-medium-series)| Medium Memory | GA|
16+
|[Msv3/Mdsv3](/azure/virtual-machines/msv3-mdsv3-medium-series)| Medium Memory | Production |
1717
|[Mbsv3/Mbdsv3](/azure/virtual-machines/sizes/memory-optimized/mbsv3-mbdsv3-series)| Medium Memory| Preview|
1818
|Msv3/Mdsv3| High Memory | Preview|
1919
|Msv3/Mdsv3| Very High Memory | Preview|

articles/azure-functions/TOC.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -383,12 +383,8 @@
383383
displayName: bundles, extension bundles
384384
- name: Binding expression patterns
385385
href: functions-bindings-expressions-patterns.md
386-
- name: Use binding return values
387-
href: functions-bindings-return-value.md
388386
- name: Handle binding errors
389387
href: functions-bindings-errors.md
390-
- name: Binding definitions for Python v2
391-
href: functions-bindings-triggers-python.md
392388
- name: Frameworks
393389
items:
394390
- name: Express.js
@@ -451,6 +447,8 @@
451447
- name: Programming models
452448
displayName: python
453449
href: functions-reference-python.md#programming-model
450+
- name: Binding definitions for Python v2
451+
href: functions-bindings-triggers-python.md
454452
- name: Python worker extensions
455453
href: develop-python-worker-extensions.md
456454
- name: Scale and performance recommendations

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,13 +283,13 @@ You can also build your app with ReadyToRun from the command line. For more info
283283

284284
## Supported types for bindings
285285

286-
Each binding has its own supported types; for instance, a blob trigger attribute can be applied to a string parameter, a POCO parameter, a `CloudBlockBlob` parameter, or any of several other supported types. The [binding reference article for blob bindings](functions-bindings-storage-blob-trigger.md#usage) lists all supported parameter types. For more information, see [Triggers and bindings](functions-triggers-bindings.md) and the [binding reference docs for each binding type](functions-triggers-bindings.md#next-steps).
286+
Each binding has its own supported types; for instance, a blob trigger attribute can be applied to a string parameter, a POCO parameter, a `CloudBlockBlob` parameter, or any of several other supported types. The [binding reference article for blob bindings](functions-bindings-storage-blob-trigger.md#usage) lists all supported parameter types. For more information, see [Triggers and bindings](functions-triggers-bindings.md) and the [binding reference docs for each binding type](functions-triggers-bindings.md#related-content).
287287

288288
[!INCLUDE [HTTP client best practices](../../includes/functions-http-client-best-practices.md)]
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-reference-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The `#r` statement is explained [later in this article](#referencing-external-as
8989

9090
## Supported types for bindings
9191

92-
Each binding has its own supported types; for instance, a blob trigger can be used with a string parameter, a POCO parameter, a `CloudBlockBlob` parameter, or any of several other supported types. The [binding reference article for blob bindings](functions-bindings-storage-blob-trigger.md#usage) lists all supported parameter types for blob triggers. For more information, see [Triggers and bindings](functions-triggers-bindings.md) and the [binding reference docs for each binding type](functions-triggers-bindings.md#next-steps).
92+
Each binding has its own supported types; for instance, a blob trigger can be used with a string parameter, a POCO parameter, a `CloudBlockBlob` parameter, or any of several other supported types. The [binding reference article for blob bindings](functions-bindings-storage-blob-trigger.md#usage) lists all supported parameter types for blob triggers. For more information, see [Triggers and bindings](functions-triggers-bindings.md) and the [binding reference docs for each binding type](functions-triggers-bindings.md#related-content).
9393

9494
[!INCLUDE [HTTP client best practices](../../includes/functions-http-client-best-practices.md)]
9595

0 commit comments

Comments
 (0)