Metalama.Community.AutoCancellationToken 2023.3.3-preview

Prefix Reserved
This is a prerelease version of Metalama.Community.AutoCancellationToken.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Metalama.Community.AutoCancellationToken --version 2023.3.3-preview
                    
NuGet\Install-Package Metalama.Community.AutoCancellationToken -Version 2023.3.3-preview
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Metalama.Community.AutoCancellationToken" Version="2023.3.3-preview" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Metalama.Community.AutoCancellationToken" Version="2023.3.3-preview" />
                    
Directory.Packages.props
<PackageReference Include="Metalama.Community.AutoCancellationToken" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Metalama.Community.AutoCancellationToken --version 2023.3.3-preview
                    
#r "nuget: Metalama.Community.AutoCancellationToken, 2023.3.3-preview"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Metalama.Community.AutoCancellationToken@2023.3.3-preview
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Metalama.Community.AutoCancellationToken&version=2023.3.3-preview&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Metalama.Community.AutoCancellationToken&version=2023.3.3-preview&prerelease
                    
Install as a Cake Tool

Metalama.Community.AutoCancellationToken

Automatically propagates CancellationToken parameter to async methods and method calls within them.

This is a Metalama aspect. It modifies your code during compilation by using source weaving.

Example

Your code:

[AutoCancellationToken]
class C
{
    async Task MakeRequests(CancellationToken ct)
    {
        using var client = new HttpClient();
        await MakeRequest(client);
    }

    private static async Task MakeRequest(HttpClient client) => await client.GetAsync("https://example.org");
}

What gets compiled:

class C
{
    async Task MakeRequests(CancellationToken ct)
    {
        using var client = new HttpClient();
        await MakeRequest(client, ct);
    }

    private static async Task MakeRequest(HttpClient client, CancellationToken cancellationToken = default) => await client.GetAsync("https://example.org", cancellationToken);
}

Notice that CancellationToken parameter was added to the declaration of MakeRequest and that CancellationToken argument was added to the calls of MakeRequest and HttpClient.GetAsync.

Installation

Install the NuGet package: dotnet add package Metalama.Community.AutoCancellationToken.

How to use

Add [AutoCancellationToken] to the types where you want it to apply.

By annotating a type with [AutoCancellationToken], you add cancellation to all its async methods. Specifically:

  • A CancellationToken parameter is added to all async methods that don't have it.
  • A CancelltionToken argument is added to calls within async methods where:
    • CancellationToken can be added as a last argument and the added argument corresponds to a CancellationToken parameter (e.g. it's not a params object[] parameter or a generic parameter). The added argument can result in calling a different overload of the method, or specifying a value for an optional parameter.
    • The call is not in a static local function.
    • The containing method doesn't have two or more CancellationToken parameters, since it wouldn't be clear which one to use.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Metalama.Community.AutoCancellationToken:

Package Downloads
Shinya.Core

Shinya.Framework

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2025.2.2-preview 427 9/19/2025
2025.2.1-preview 204 9/9/2025
2025.1.15 0 9/30/2025
2025.1.13 182 9/5/2025
2025.1.12 410 8/7/2025
2025.1.11 570 7/23/2025
2025.1.10 404 7/3/2025
2025.1.9 498 5/29/2025
2025.1.8 186 5/26/2025
2025.1.7 183 5/22/2025
2025.1.6 291 5/15/2025
2025.1.5 164 5/2/2025
2025.1.4-rc 265 4/15/2025
2025.1.3-rc 226 4/9/2025
2025.1.2-preview 231 4/1/2025
2025.1.1-preview 212 3/18/2025
2025.0.12 176 5/22/2025
2025.0.11 143 5/2/2025
2025.0.10 197 3/31/2025
2025.0.9 269 3/7/2025
2025.0.8 316 1/6/2025
2025.0.7-rc 233 12/6/2024
2025.0.6-rc 247 11/15/2024
2025.0.5-preview 151 11/8/2024
2025.0.3-preview 128 10/25/2024
2025.0.2-preview 123 10/24/2024
2025.0.1-preview 113 10/14/2024
2024.2.32 216 3/7/2025
2024.2.31 131 12/6/2024
2024.2.30 143 11/15/2024
2024.2.29 135 10/31/2024
2024.2.27 131 10/25/2024
2024.2.26 124 10/24/2024
2024.2.25 172 10/14/2024
2024.2.24 149 10/2/2024
2024.2.23 176 9/10/2024
2024.2.22 153 8/29/2024
2024.2.21 152 8/28/2024
2024.2.20 173 8/15/2024
2024.2.19 1,435 8/1/2024
2024.2.18 128 7/29/2024
2024.2.17-rc 143 7/22/2024
2024.2.16-rc 132 7/18/2024
2024.2.15-rc 115 7/12/2024
2024.2.14-rc 2,711 7/8/2024
2024.2.13-rc 132 7/2/2024
2024.2.12-preview 129 6/28/2024
2024.2.11-preview 125 6/26/2024
2024.2.10-preview 142 6/20/2024
2024.2.9-preview 137 6/11/2024
2024.2.8-preview 124 6/6/2024
2024.2.7-preview 153 5/30/2024
2024.2.6-preview 140 5/25/2024
2024.2.5-preview 149 5/6/2024
2024.2.4-preview 143 5/4/2024
2024.2.3-preview 133 4/30/2024
2024.2.2-preview 139 4/23/2024
2024.2.1-preview 131 4/11/2024
2024.1.30 121 10/24/2024
2024.1.29 140 10/11/2024
2024.1.28 162 9/9/2024
2024.1.27 138 8/28/2024
2024.1.26 151 8/15/2024
2024.1.25 155 7/22/2024
2024.1.24 128 7/12/2024
2024.1.23 2,831 6/26/2024
2024.1.22 126 6/15/2024
2024.1.21 152 6/6/2024
2024.1.20 155 5/30/2024
2024.1.19 168 5/24/2024
2024.1.18 197 5/6/2024
2024.1.17 115 5/3/2024
2024.1.16 161 4/30/2024
2024.1.15 130 4/29/2024
2024.1.14 157 4/23/2024
2024.1.13 153 4/23/2024
2024.1.12 184 4/17/2024
2024.1.11-rc 139 4/11/2024
2024.1.10-rc 150 4/4/2024
2024.1.9-rc 140 3/27/2024
2024.1.8-preview 127 3/25/2024
2024.1.7-preview 146 3/19/2024
2024.1.6-preview 137 3/6/2024
2024.1.5-preview 141 2/29/2024
2024.1.4-preview 133 2/27/2024
2024.1.3-preview 142 2/23/2024
2024.1.2-preview 175 2/7/2024
2024.1.1-preview 156 1/30/2024
2024.0.16 147 6/15/2024
2024.0.15 160 6/6/2024
2024.0.14 151 5/30/2024
2024.0.13 149 5/24/2024
2024.0.12 174 4/17/2024
2024.0.11 175 3/21/2024
2024.0.10 151 3/19/2024
2024.0.9 185 2/29/2024
2024.0.8 205 2/23/2024
2024.0.7 203 2/7/2024
2024.0.6 256 1/3/2024
2024.0.5-rc 175 12/21/2023
2024.0.4-rc 187 12/12/2023
2024.0.3-preview 185 12/6/2023
2024.0.2-preview 181 11/14/2023
2024.0.1-preview 170 11/6/2023
2023.4.9 158 2/7/2024
2023.4.8 185 12/21/2023
2023.4.7 206 12/12/2023
2023.4.6 227 11/7/2023
2023.4.5-rc 186 10/26/2023
2023.4.4-preview 189 10/18/2023
2023.4.3-preview 171 10/4/2023
2023.4.2-preview 178 9/26/2023
2023.4.1-preview 180 9/13/2023
2023.3.10 167 12/21/2023
2023.3.9 195 12/12/2023
2023.3.8 212 10/17/2023
2023.3.7-rc 196 9/29/2023
2023.3.6-rc 199 9/26/2023
2023.3.5-rc 196 9/13/2023
2023.3.4-preview 223 8/30/2023
2023.3.3-preview 223 8/29/2023
2023.3.2-preview 437 8/1/2023
2023.3.1-preview 345 7/28/2023
2023.2.5 426 9/12/2023
2023.2.4 406 8/7/2023
2023.2.3-rc 384 8/3/2023
2023.2.2-rc 388 7/21/2023
2023.2.1-preview 424 6/27/2023
2023.1.7 379 9/12/2023
2023.1.6 422 8/7/2023
2023.1.5 268 7/17/2023
2023.1.4 299 6/27/2023