AsyncTask 3.0.3

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package AsyncTask --version 3.0.3
NuGet\Install-Package AsyncTask -Version 3.0.3
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="AsyncTask" Version="3.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AsyncTask --version 3.0.3
#r "nuget: AsyncTask, 3.0.3"
#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.
// Install AsyncTask as a Cake Addin
#addin nuget:?package=AsyncTask&version=3.0.3

// Install AsyncTask as a Cake Tool
#tool nuget:?package=AsyncTask&version=3.0.3

Asyncronous Task API

Model-View-Controller / Adapter Dynamically Linked Library (MVC/A DLL)


Task-based Asynchronous Pattern (TAP)


Callback support for the following delegates:

  • OnAdd
  • OnRemove
  • OnComplete
  • OnError
  • OnCanceled
  • OnTimeout

This API has several benefits, such as:

-- AsyncTask helps you to know exactly what your code does.

  • Removes pitfalls, anti-patterns, and programming mistakes.
  • Eliminate code redundancy.
  • Reusable functional procedural code.
  • Decrease RAD time.
  • Optomizes performance of asynchronous code.
  • Fix performance problems easily.
  • Inject delegates in real time.
  • Reduce boilerplate code.

-- Flexible delegate injection for any situation.

  • Dependancy injection:<br> Design patterns that implement inversion of control for resolving dependencies.
  • Labmda expressions:<br> An anonymous function that you can use to create delegates or expression tree types and supersede anonymous methods for writing inline code.
  • Anonymous methods:<br> Constructs a way to pass a code block as a delegate parameter used in building up the TaskEvent class.
  • Generic types:<br> Independant type parameters act as a placeholder for a specific type that a client specifies when they instantiate a variable of the generic type.
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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. 
.NET Core netcoreapp3.1 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • .NETFramework 4.7.2

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • net5.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.0-preview.9 49 4/13/2024
3.0.15 254 8/6/2021
3.0.9 447 6/5/2021

Added EventCustomElement and operator overloads for registering delegates.