Class QueuedTask
Provides information for a task which is queued for execution.
Inheritance
Inherited Members
Namespace: Telerik.ReportServer.Services.Models
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class QueuedTask
Constructors
QueuedTask()
Declaration
public QueuedTask()
Properties
AgentId
The ID of the service agent instance name and the worker thread which is executing the task.
Declaration
public string AgentId { get; set; }
Property Value
System.String
|
IsCancellationRequested
The cancellation status of the task execution.
Declaration
public bool IsCancellationRequested { get; set; }
Property Value
System.Boolean
|
QueuedOn
The date and time when the task has been queued to the particular agent and worker thread for execution.
Declaration
public DateTime QueuedOn { get; set; }
Property Value
System.DateTime
|
TaskId
The ID of the scheduled task or data alert.
Declaration
public string TaskId { get; set; }
Property Value
System.String
|
TaskName
The name of the scheduled task or data alert.
Declaration
public string TaskName { get; set; }
Property Value
System.String
|