Skip to content

Commit 97f6704

Browse files
committed
Try with HR
1 parent 753ffad commit 97f6704

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

articles/azure-functions/functions-bindings-service-bus-output.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ This example shows a [C# function](dotnet-isolated-process-guide.md) that receiv
5050

5151
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/ServiceBus/ServiceBusReceivedMessageFunctions.cs" id="docsnippet_servicebus_readmessage":::
5252

53+
<hr/>
54+
5355
This example uses an HTTP trigger with an `OutputType` object to both send an HTTP response and write the output message.
5456

5557
```cs
@@ -95,7 +97,9 @@ public static string ServiceBusOutput([HttpTrigger] dynamic input, ILogger log)
9597
}
9698
```
9799

98-
On this other example instead of using the return statement to send the message we have an HTTP trigger function which will send a reply different from the message sent.
100+
<hr/>
101+
102+
Instead of using the return statement to send the message, this HTTP trigger function returns an HTTP response that is different from the output message.
99103

100104
```cs
101105
[FunctionName("HttpTrigger1")]

0 commit comments

Comments
 (0)