author | ms.service | ms.topic | ms.date | ms.author |
---|---|---|---|---|
ggailey777 |
azure-functions |
include |
09/18/2021 |
glenga |
This article supports creating both types of compiled C# functions:
Execution model | Description |
---|---|
In-process | Your function code runs in the same process as the Functions host process. Supports both .NET Core 3.1 and .NET 6.0. To learn more, see Develop C# class library functions using Azure Functions. |
Isolated process | Your function code runs in a separate .NET worker process. Supports both .NET 5.0 and .NET 6.0. To learn more, see Develop isolated process functions in C#. |