Class TaskEventArgs
Event arguments used in events exposed by TaskExecutor.
Inheritance
System.Object
TaskEventArgs
Namespace: EPiServer.Async
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
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 |