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