Skip to content

Files

Latest commit

d317ce2 · Nov 3, 2021

History

History
14 lines (12 loc) · 927 Bytes

functions-dotnet-execution-model.md

File metadata and controls

14 lines (12 loc) · 927 Bytes
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#.