Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 735 Bytes

functions-bindings-csharp-intro.md

File metadata and controls

13 lines (11 loc) · 735 Bytes
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
11/16/2021
glenga

A C# function can be created using one of the following C# modes:

  • In-process class library: compiled C# function that runs in the same process as the Functions runtime.
  • Isolated process class library: compiled C# function that runs in a process isolated from the runtime. Isolated process is required to support C# functions running on .NET 5.0.
  • C# script: used primarily when creating C# functions in the Azure portal.