Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 883 Bytes

functions-dotnet-execution-model.md

File metadata and controls

12 lines (11 loc) · 883 Bytes
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
07/19/2022
glenga
Execution model Description
Isolated worker model Your function code runs in a separate .NET worker process. Use with supported versions of .NET and .NET Framework. To learn more, see Develop .NET isolated worker process functions.
In-process model Your function code runs in the same process as the Functions host process. Supports only Long Term Support (LTS) versions of .NET. To learn more, see Develop .NET class library functions.