Skip to content

Commit 3a1c390

Browse files
Update articles/azure-functions/dotnet-isolated-process-guide.md
Co-authored-by: Glenn Gailey <[email protected]>
1 parent 71c22e7 commit 3a1c390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ For a more complete example of using custom middleware in your function app, see
140140

141141
A function can accept a [CancellationToken](/dotnet/api/system.threading.cancellationtoken) parameter, which enables the operating system to notify your code when the function is about to be terminated. You can use this notification to make sure the function doesn't terminate unexpectedly in a way that leaves data in an inconsistent state.
142142

143-
Cancellation tokens are supported in .NET isolated functions. The following example shows how to use a cancellation token in a function:
143+
Cancellation tokens are supported in .NET functions when running in an isolated process. The following example shows how to use a cancellation token in a function:
144144

145145
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Net7Worker/HttpFunction.cs" range="23-51":::
146146

0 commit comments

Comments
 (0)