Table of Contents

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 int

The event id of the history event

input string

The serialized input of the termination event

Properties

EventType

Gets the event type

public override EventType EventType { get; }

Property Value

EventType

Input

Gets or sets the serialized input for the the termination event

[DataMember]
public string Input { get; set; }

Property Value

string