SaaS CMS has officially launched! Learn more now.

Class TaskEventArgs

Event arguments used in events exposed by TaskExecutor.

Inheritance
System.Object
System.EventArgs
TaskEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Async
Assembly: EPiServer.Framework.dll
Version: 11.20.7
Syntax
public class TaskEventArgs : EventArgs

Constructors

TaskEventArgs(TaskInformation)

Creates a new instance of TaskEventArgs.

Declaration
public TaskEventArgs(TaskInformation information)
Parameters
Type Name Description
TaskInformation information

The associated TaskInformation instance.

Properties

Info

The associated TaskInformation.

Declaration
public TaskInformation Info { get; }
Property Value
Type Description
TaskInformation

Task

The associated Task.

Declaration
public Task Task { get; set; }
Property Value
Type Description
System.Threading.Tasks.Task

Extension Methods