Class TaskScheduledEvent
- Namespace
- DurableTask.Core.History
- Assembly
- DurableTask.Core.dll
A history event for a new task scheduled
[DataContract]
public class TaskScheduledEvent : HistoryEvent, IExtensibleDataObject
- Inheritance
-
TaskScheduledEvent
- Implements
-
IExtensibleDataObject
- Inherited Members
Constructors
TaskScheduledEvent(int)
Creates a new TaskScheduledEvent with the supplied event id
public TaskScheduledEvent(int eventId)
Parameters
eventId
intThe event id of the history event
Properties
EventType
Gets the event type
public override EventType EventType { get; }
Property Value
Input
Gets or sets the task's serialized input
[DataMember]
public string Input { get; set; }
Property Value
Name
Gets or sets the orchestration Name
[DataMember]
public string Name { get; set; }
Property Value
Version
Gets or sets the orchestration Version
[DataMember]
public string Version { get; set; }