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
intThe ID of the event.
Properties
EventType
Gets the event type
public override EventType EventType { get; }
Property Value
Input
Gets or sets the serialized payload of the event
[DataMember]
public string Input { get; set; }
Property Value
InstanceId
The orchestration instance ID for this event
[DataMember]
public string InstanceId { get; set; }
Property Value
Name
Gets or sets the orchestration name
[DataMember]
public string Name { get; set; }