Class SubOrchestrationInstanceCreatedEvent
- Namespace
- DurableTask.Core.History
- Assembly
- DurableTask.Core.dll
A history event for sub orchestration instance creation
[DataContract]
public class SubOrchestrationInstanceCreatedEvent : HistoryEvent, IExtensibleDataObject
- Inheritance
-
SubOrchestrationInstanceCreatedEvent
- Implements
-
IExtensibleDataObject
- Inherited Members
Constructors
SubOrchestrationInstanceCreatedEvent(int)
Creates a new SubOrchestrationInstanceCreatedEvent with the supplied event id
public SubOrchestrationInstanceCreatedEvent(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 sub orchestration's serialized input
[DataMember]
public string Input { get; set; }
Property Value
InstanceId
Gets or sets the instance Id
[DataMember]
public string InstanceId { get; set; }
Property Value
Name
Gets or sets the sub orchestration Name
[DataMember]
public string Name { get; set; }
Property Value
Version
Gets or sets the sub orchestration Version
[DataMember]
public string Version { get; set; }