Class SubOrchestrationInstanceCompletedEvent
- Namespace
- DurableTask.Core.History
- Assembly
- DurableTask.Core.dll
A history event for sub orchestration instance completion
[DataContract]
public class SubOrchestrationInstanceCompletedEvent : HistoryEvent, IExtensibleDataObject
- Inheritance
-
SubOrchestrationInstanceCompletedEvent
- Implements
-
IExtensibleDataObject
- Inherited Members
Constructors
SubOrchestrationInstanceCompletedEvent(int, int, string)
Create a new SubOrchestrationInstanceCompletedEvent with the supplied params
public SubOrchestrationInstanceCompletedEvent(int eventId, int taskScheduledId, string result)
Parameters
eventId
intThe event id of the history event
taskScheduledId
intThe scheduled parent instance event id
result
stringThe serialized result
Properties
EventType
Gets the event type
public override EventType EventType { get; }
Property Value
Result
Get the serialized result
[DataMember]
public string Result { get; }
Property Value
TaskScheduledId
Gets the scheduled parent instance event id
[DataMember]
public int TaskScheduledId { get; }