Table of Contents

Class EventSentEvent

Namespace
DurableTask.Core.History
Assembly
DurableTask.Core.dll

A history event for event sent

[DataContract]
public class EventSentEvent : HistoryEvent, IExtensibleDataObject
Inheritance
EventSentEvent
Implements
IExtensibleDataObject
Inherited Members

Constructors

EventSentEvent(int)

Creates a new EventSentEvent with the supplied event id.

public EventSentEvent(int eventId)

Parameters

eventId int

The ID of the event.

Properties

EventType

Gets the event type

public override EventType EventType { get; }

Property Value

EventType

Input

Gets or sets the serialized payload of the event

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

Property Value

string

InstanceId

The orchestration instance ID for this event

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

Property Value

string

Name

Gets or sets the orchestration name

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

Property Value

string