Class TaskEventArgs
NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version. 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: 8.11.0Syntax
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 |