You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/create-serverless-apps-visual-studio.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Create an example serverless app with Visual Studio
3
-
description: Using an Azure quickstart template, create, deploy, and manage an example serverless app with Azure Logic Apps and Azure Functions in Visual Studio
3
+
description: Create, deploy, and manage an example serverless app with an Azure quickstart template, Azure Logic Apps and Azure Functions in Visual Studio.
@@ -103,8 +103,8 @@ add another case between **Case** and **Default**.
103
103
104
104
## JSON definition
105
105
106
-
Now that you created a logic app using a switch statement,
107
-
let's look at the high-level code definition behind the switch statement.
106
+
Now that you created a logic app using a switch action,
107
+
let's look at the high-level code definition behind the switch action.
108
108
109
109
```json
110
110
"Switch": {
@@ -137,11 +137,11 @@ let's look at the high-level code definition behind the switch statement.
137
137
138
138
| Label | Description |
139
139
|-------|-------------|
140
-
|`"Switch"`| The name of the switch statement, which you can rename for readability |
141
-
|`"type": "Switch"`| Specifies that the action is a switch statement|
140
+
|`"Switch"`| The name of the switch action, which you can rename for readability |
141
+
|`"type": "Switch"`| Specifies that the action is a switch action|
142
142
|`"expression"`| In this example, specifies the approver's selected option that's evaluated against each case as declared later in the definition |
143
143
|`"cases"`| Defines any number of cases. For each case, `"Case_*"` is the default name for that case, which you can rename for readability |
144
-
|`"case"`| Specifies the case's value, which must be a constant and unique value that the switch statement uses for comparison. If no cases match the switch expression result, the actions in the `"default"` section are run. |
144
+
|`"case"`| Specifies the case's value, which must be a constant and unique value that the switch action uses for comparison. If no cases match the switch expression result, the actions in the `"default"` section are run. |
145
145
|||
146
146
147
147
## Get support
@@ -153,7 +153,7 @@ let's look at the high-level code definition behind the switch statement.
153
153
154
154
## Next steps
155
155
156
-
*[Run steps based on a condition (conditional statements)](../logic-apps/logic-apps-control-flow-conditional-statement.md)
156
+
*[Run steps based on a condition (condition action)](../logic-apps/logic-apps-control-flow-conditional-statement.md)
157
157
*[Run and repeat steps (loops)](../logic-apps/logic-apps-control-flow-loops.md)
158
158
*[Run or merge parallel steps (branches)](../logic-apps/logic-apps-control-flow-branches.md)
159
159
*[Run steps based on grouped action status (scopes)](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md)
0 commit comments