Table of Contents

Class EventRaisedEvent

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

A history event for event raised

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

Constructors

EventRaisedEvent(int, string)

Creates a new EventRaisedEvent with the supplied event id and input.

public EventRaisedEvent(int eventId, string input)

Parameters

eventId int

The ID of the event.

input string

The serialized event payload.

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

Name

Gets or sets the orchestration name

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

Property Value

string