Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 1.01 KB

functions-bindings-csharp-intro.md

File metadata and controls

12 lines (10 loc) · 1.01 KB
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
08/22/2023
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.