Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 1.01 KB

File metadata and controls

12 lines (10 loc) · 1.01 KB
author ggailey777
ms.service azure-functions
ms.topic include
ms.date 08/22/2023
ms.author glenga

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

  • Isolated worker model: Compiled C# function that runs in a worker process that's isolated from the runtime. Isolated worker process is required to support C# functions running on LTS and non-LTS versions .NET and the .NET Framework. Extensions for isolated worker process functions use Microsoft.Azure.Functions.Worker.Extensions.* namespaces.
  • In-process model: Compiled C# function that runs in the same process as the Functions runtime. In a variation of this model, Functions can be run using C# scripting, which is supported primarily for C# portal editing. Extensions for in-process functions use Microsoft.Azure.WebJobs.Extensions.* namespaces.