Skip to content

Commit 392cdbf

Browse files
Merge pull request #296273 from PesalaPavan/patch-65
(AzureCXP) fixes MicrosoftDocs/azure-docs#400109
2 parents 960e3ec + 3de3838 commit 392cdbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ Your function definition should now look like the following code:
7777

7878
```csharp
7979
[Function("HttpExample")]
80-
public IActionResult Run([HttpTrigger(AuthorizationLevel.AuthLevelValue, "get", "post")] HttpRequest req)
80+
public IActionResult Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post")] HttpRequest req)
8181
{
82-
return new OkObjectResult("Welcome to Azure Functions!");
82+
return new OkObjectResult("Hello, functions");
8383
}
8484
```
8585

0 commit comments

Comments
 (0)