Table of Contents

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 int

The event id of the history event

Properties

EventType

Gets the event type

public override EventType EventType { get; }

Property Value

EventType

Input

Gets or sets the sub orchestration's serialized input

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

Property Value

string

InstanceId

Gets or sets the instance Id

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

Property Value

string

Name

Gets or sets the sub orchestration Name

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

Property Value

string

Version

Gets or sets the sub orchestration Version

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

Property Value

string