Skip to Content
Hands-On Azure for Developers
book

Hands-On Azure for Developers

by Kamil Mrzygłód
November 2018
Intermediate to advanced
606 pages
15h 7m
English
Packt Publishing
Content preview from Hands-On Azure for Developers

Using Visual Studio

In the previous section, you created a function using a wizard in Visual Studio. If you go back to this particular project and open its file, you will see some common code, which is always created with this particular template. Here, you can find the same code but without the custom code introduced by it:

using System.Net.Http;using System.Threading.Tasks;using Microsoft.Azure.WebJobs;using Microsoft.Azure.WebJobs.Extensions.Http;using Microsoft.Azure.WebJobs.Host;namespace HandsOnAzure.Function{    public static class Function1    {        [FunctionName("Function1")]        public static async Task<HttpResponseMessage> Run(            [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)]            HttpRequestMessage req, TraceWriter log) { ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Implementing Azure: Putting Modern DevOps to Use

Implementing Azure: Putting Modern DevOps to Use

Florian Klaffenbach, Oliver Michalski, Markus Klein, Mohamed Wali

Publisher Resources

ISBN: 9781789340624Supplemental Content