August 2017
Intermediate to advanced
468 pages
12h 5m
English
Functions Portal is a part of Azure Management Portal that provides a rich development environment for the Azure Functions.
C# based the Azure Functions are currently offered in two flavors: a "script-based" function and a "precompiled" function.
Precompiled functions are created in Visual Studio using a class-library-based project and offer traditional .NET development experience.
C# script-based functions are deployed from Functions Portal and based on .csx "C# script" files. With functions based on .csx, the development process is more similar to developing in a script language like Node.js.
This chapter will describe creating and configuring a "script-based" function using the Functions Portal.
For the remainder of the ...