Table of Contents

Class WorkflowEvent

Namespace
Acuit.Pinpoint.Workflows.Workstation
Assembly
Acuit.Pinpoint.Workflows.Workstation.dll

A workflow event.

public class WorkflowEvent
Inheritance
WorkflowEvent
Inherited Members

Remarks

This instance will be available to its workflow event handlers via the "WorkflowEvent" parameter.

Additional event data can be added by deriving from this class and adding properties.

Constructors

WorkflowEvent(string)

Initializes a new instance of the WorkflowEvent class.

public WorkflowEvent(string eventName)

Parameters

eventName string

The event name. Event names are case-insensitive.

Exceptions

ArgumentNullException

eventName is null.

Properties

EventName

Gets the event name. Event names are case-insensitive.

public string EventName { get; }

Property Value

string

Methods

ToString()

Returns the EventName value as a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.