Skip to content

Commit a7aed7e

Browse files
authored
Merge pull request #104846 from craigshoemaker/crs-functions-service-bus-restructure
Restructure Service Bus trigger/binding ref
2 parents 7d2b1f9 + c87b0b6 commit a7aed7e

8 files changed

+803
-755
lines changed

articles/app-service/webjobs-sdk-how-to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ static async Task Main()
521521
}
522522
```
523523

524-
For more details, see the [Service Bus binding](../azure-functions/functions-bindings-service-bus.md#hostjson-settings) article.
524+
For more details, see the [Service Bus binding](../azure-functions/functions-bindings-service-bus-output.md#hostjson-settings) article.
525525

526526
### Configuration for other bindings
527527

articles/azure-functions/TOC.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,13 @@
381381
- name: SendGrid
382382
href: functions-bindings-sendgrid.md
383383
- name: Service Bus
384-
href: functions-bindings-service-bus.md
384+
items:
385+
- name: Overview
386+
href: functions-bindings-service-bus.md
387+
- name: Trigger
388+
href: functions-bindings-service-bus-trigger.md
389+
- name: Output
390+
href: functions-bindings-service-bus-output.md
385391
- name: SignalR Service
386392
href: functions-bindings-signalr-service.md
387393
- name: Table storage

articles/azure-functions/functions-bindings-error-pages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ When integrating with Azure services, errors may originate from the APIs of the
3232

3333
+ [Queue storage](functions-bindings-storage-queue-output.md#exceptions-and-return-codes)
3434

35-
+ [Service Bus](functions-bindings-service-bus.md#exceptions-and-return-codes)
35+
+ [Service Bus](functions-bindings-service-bus-output.md#exceptions-and-return-codes)
3636

3737
+ [Table storage](functions-bindings-storage-table.md#exceptions-and-return-codes)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ In **Visual Studio**, you can install packages from the Package Manager Console
5151
Install-Package Microsoft.Azure.WebJobs.Extensions.ServiceBus -Version <TARGET_VERSION>
5252
```
5353

54-
The name of the package used for a given binding is provided in the reference article for that binding. For an example, see the [Packages section of the Service Bus binding reference article](functions-bindings-service-bus.md#packages---functions-1x).
54+
The name of the package used for a given binding is provided in the reference article for that binding. For an example, see the [Packages section of the Service Bus binding reference article](functions-bindings-service-bus.md#functions-1x).
5555

5656
Replace `<TARGET_VERSION>` in the example with a specific version of the package, such as `3.0.0-beta5`. Valid versions are listed on the individual package pages at [NuGet.org](https://nuget.org). The major versions that correspond to Functions runtime 1.x or 2.x are specified in the reference article for the binding.
5757

0 commit comments

Comments
 (0)