Differences between the isolated worker model and the in-process model for .NET on Azure Functions

There are two execution models for .NET functions:

Execution model Description
In-process Your function code runs in the same process as the Functions host process. Check out .NET supported versions before getting started. To learn more, see Develop C# class library functions using Azure Functions.
Isolated process Your function code runs in a separate .NET worker process. Check out .NET supported versions before getting started. To learn more, see Develop isolated process functions in C#.

This article describes the current state of the functional and behavioral differences between the two models. To migrate from the in-process model to the isolated worker model, see Migrate .NET apps from the in-process model to the isolated worker model.

Execution model comparison table

Use the following table to compare feature and functional differences between the two models:

Feature/behavior Isolated worker model In-process model3
Supported .NET versions Long Term Support (LTS) versions,
Standard Term Support (STS) versions,
.NET Framework
Long Term Support (LTS) versions6
Core packages Microsoft.Azure.Functions.Worker
Microsoft.Azure.Functions.Worker.Sdk
Microsoft.NET.Sdk.Functions
Binding extension packages Microsoft.Azure.Functions.Worker.Extensions.* Microsoft.Azure.WebJobs.Extensions.*
Durable Functions Supported Supported
Model types exposed by bindings Simple types
JSON serializable types
Arrays/enumerations
Service SDK types4
Simple types
JSON serializable types
Arrays/enumerations
Service SDK types4
HTTP trigger model types HttpRequestData / HttpResponseData
HttpRequest / IActionResult (using ASP.NET Core integration)5
HttpRequest / IActionResult5
HttpRequestMessage / HttpResponseMessage
Output binding interactions Return values in an expanded model with:
- single or multiple outputs
- arrays of outputs
Return values (single output only),
out parameters,
IAsyncCollector
Imperative bindings1 Not supported - instead work with SDK types directly Supported
Dependency injection Supported (improved model consistent with .NET ecosystem) Supported
Middleware Supported Not supported
Logging ILogger<T>/ILogger obtained from FunctionContext or via dependency injection ILogger passed to the function
ILogger<T> via dependency injection
Application Insights dependencies Supported Supported
Cancellation tokens Supported Supported
Cold start times2 Configurable optimizations Optimized
ReadyToRun Supported Supported

1 When you need to interact with a service using parameters determined at runtime, using the corresponding service SDKs directly is recommended over using imperative bindings. The SDKs are less verbose, cover more scenarios, and have advantages for error handling and debugging purposes. This recommendation applies to both models.

2 Cold start times could be additionally impacted on Windows when using some preview versions of .NET due to just-in-time loading of preview frameworks. This impact applies to both the in-process and out-of-process models but can be noticeable when comparing across different versions. This delay for preview versions isn't present on Linux plans.

3 C# Script functions also run in-process and use the same libraries as in-process class library functions. For more information, see the Azure Functions C# script (.csx) developer reference.

4 Service SDK types include types from the Azure SDK for .NET such as BlobClient.

5 ASP.NET Core types are not supported for .NET Framework.

6 .NET 8 is not yet supported on the in-process model, though it is available on the isolated worker model. For information about .NET 8 plans, including future options for the in-process model, see the Azure Functions Roadmap Update post.

Supported versions

Versions of the Functions runtime work with specific versions of .NET. To learn more about Functions versions, see Azure Functions runtime versions overview. Version support depends on whether your functions run in-process or out-of-process (isolated).

Note

To learn how to change the Functions runtime version used by your function app, see view and update the current runtime version.

The following table shows the highest level of .NET Core or .NET Framework that can be used with a specific version of Functions.

Functions runtime version In-process
(.NET class library)
Out-of-process
(.NET Isolated)
Functions 4.x .NET 6.0 .NET 6.0
.NET 7.0 (preview)
.NET Framework 4.8 (GA)1
Functions 3.x .NET Core 3.1 .NET 5.0 2
Functions 2.x .NET Core 2.13 n/a
Functions 1.x .NET Framework 4.8 n/a

1 Build process also requires .NET 6 SDK. Support for .NET Framework 4.8 is in GA.

2 Build process also requires .NET Core 3.1 SDK.

3 For details, see Functions v2.x considerations.

For the latest news about Azure Functions releases, including the removal of specific older minor versions, monitor Azure App Service announcements.

Next steps