Skip to content

Commit 290a953

Browse files
committed
Update date, correct typos, shorten alt text
1 parent 6c3a69c commit 290a953

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/logic-apps/logic-apps-scenario-function-sb-trigger.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 10/31/2022
8+
ms.date: 11/7/2022
99
ms.custom: devx-track-csharp
1010
#Customer intent: As a logic apps developer, I want to set up a long-running task by creating a logic app workflow that monitors and responds to messages or events and uses Azure Functions to call the workflow.
1111
---
@@ -22,7 +22,7 @@ This how-to guide shows how to create a logic app workflow that starts with the
2222

2323
> [!NOTE]
2424
>
25-
> Although you can implement this behavior using either a Consumption and Standard logic app workflow,
25+
> Although you can implement this behavior using either a Consumption or Standard logic app workflow,
2626
> this example continues with a Consumption workflow.
2727
2828
## Prerequisites
@@ -31,7 +31,7 @@ This how-to guide shows how to create a logic app workflow that starts with the
3131

3232
* A Service Bus namespace. If you don't have a namespace, [create your namespace first](../service-bus-messaging/service-bus-create-namespace-portal.md). For more information, see [What is Azure Service Bus?](../service-bus-messaging/service-bus-messaging-overview.md)
3333

34-
* A function app, which is a container for your functions. If you don't have a function app, [create your function app first](../azure-functions/functions-get-started.md), and make sure to and make sure that you select .NET for the **Runtime stack** property.
34+
* A function app, which is a container for your functions. If you don't have a function app, [create your function app first](../azure-functions/functions-get-started.md), and make sure that you select .NET for the **Runtime stack** property.
3535

3636
* Basic knowledge about [how to create a Consumption logic app workflow](quickstart-create-first-logic-app-workflow.md).
3737

@@ -89,7 +89,7 @@ This how-to guide shows how to create a logic app workflow that starts with the
8989
}
9090
```
9191

92-
1. Under the trigger, add any other actions that you want use to process the received message.
92+
1. Under the trigger, add any other actions that you want to use to process the received message.
9393

9494
For example, you can add an action that sends email with the Office 365 Outlook connector.
9595

@@ -107,7 +107,7 @@ Next, create the function that listens to the queue and calls the endpoint on th
107107

108108
1. On the function app navigation menu, select **Functions**. On the **Functions** pane, select **Create**.
109109

110-
:::image type="content" source="./media/logic-apps-scenario-function-sb-trigger/add-new-function-to-function-app.png" alt-text="Screenshot of the Azure portal with a function app open, and 'Functions' is highlighted on the function app menu. The 'Functions' page is opened, and 'Create' is highlighted.":::
110+
:::image type="content" source="./media/logic-apps-scenario-function-sb-trigger/add-new-function-to-function-app.png" alt-text="Screenshot of a function app with 'Functions' highlighted on the function app menu. The 'Functions' page is opened, and 'Create' is highlighted.":::
111111

112112
1. Under **Select a template**, select the template named **Azure Service Bus Queue trigger**. After the **Template details** section appears, which shows different options based on your template selection, provide the following information:
113113

@@ -123,7 +123,7 @@ Next, create the function that listens to the queue and calls the endpoint on th
123123

124124
The Azure portal now shows the **Overview** page for your new Azure Service Bus Queue trigger function.
125125

126-
1. Now, write a basic function to call the endpoint for the logic app workflow that you created earlier.Before you write your function, review the following considerations:
126+
1. Now, write a basic function to call the endpoint for the logic app workflow that you created earlier. Before you write your function, review the following considerations:
127127

128128
* Trigger the function by using the message from the queue message.
129129

@@ -139,7 +139,7 @@ Next, create the function that listens to the queue and calls the endpoint on th
139139
using System.Net.Http;
140140
using System.Text;
141141

142-
// Set up the URI for the logic app workflow. You can also get this value on the logic app's 'Overview' pane, under the trigger history or an environment variable.
142+
// Set up the URI for the logic app workflow. You can also get this value on the logic app's 'Overview' pane, under the trigger history, or from an environment variable.
143143
private static string logicAppUri = @"https://prod-05.westus.logic.azure.com:443/workflows/<remaining-callback-URL>";
144144

145145
// Reuse the instance of HTTP clients if possible. For more information, see https://learn.microsoft.com/azure/azure-functions/manage-connections.

0 commit comments

Comments
 (0)