Create an Azure Function using Visual Studio Code Part 3 – Edit the code and pass a query string
1 min read

Create an Azure Function using Visual Studio Code Part 3 – Edit the code and pass a query string

Last time we had our Azure Function with C# and deployed and tested it. Let’s go into the function code and make a change and pass a query string and watch our function reply.

Go into the project folder and change the text after hello to say

"on my local environment!"

Launch the debugging again and append below to your string.

?name=DonaldDuck

There you go! Now in the next post we will deploy to Azure!

Leave a Reply