Search⌘ K
AI Features

Azure Function Types

Explore the different Azure Function types available in C#, including CSX scripts, in-process, and isolated process functions. Learn how to use various triggers like HTTP, timer, queue storage, and more to invoke functions efficiently in serverless architecture.

Azure Functions supports several programming languages and multiple ways of hosting and executing the functions. We can run either an interpreted script or a compiled executable. We can host a function in its own isolated process or as a part of the function host process.

Languages supported by Azure Functions

Azure Functions can support the following languages:

  • C#

  • Java

  • JavaScript

  • PowerShell

  • Python

In addition ...