Skip to content

Commit af4404c

Browse files
authored
Merge pull request #201086 from ggailey777/patch-17
Add the missing isolated process example
2 parents b67aadb + 2813a02 commit af4404c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

articles/azure-functions/functions-create-your-first-function-visual-studio.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,18 @@ The `FunctionName` method attribute sets the name of the function, which by defa
7272

7373
1. In the `HttpTrigger` method named `Run`, rename the `FunctionName` method attribute to `HttpExample`.
7474

75-
Your function definition should now look like the following code:
75+
Your function definition should now look like the following code, depending on mode:
76+
77+
# [In-process](#tab/in-process)
7678

7779
:::code language="csharp" source="~/functions-docs-csharp/http-trigger-template/HttpExample.cs" range="15-18":::
7880

81+
# [Isolated process](#tab/isolated-process)
82+
83+
:::code language="csharp" source="~/functions-docs-csharp/http-trigger-isolated/HttpExample.cs" range="11-13":::
84+
85+
---
86+
7987
Now that you've renamed the function, you can test it on your local computer.
8088

8189
## Run the function locally

0 commit comments

Comments
 (0)