Click or drag to resize
StaMaStateMachineTraceDispatchTriggerEventEventHandler Delegate
Represents a method that will be called whenever the event queue dispatches an event to the state machine.

Namespace: StaMa
Assembly: StaMa (in StaMa.dll) Version: 2.3.1.7
Syntax
public delegate void TraceDispatchTriggerEventEventHandler(
	StateMachine stateMachine,
	Object triggerEvent,
	EventArgs eventArgs
)

Parameters

stateMachine
Type: StaMaStateMachine
The source StateMachine instance that raises the event.
triggerEvent
Type: SystemObject
An Object that represents the trigger event that was sent to the state machine.
eventArgs
Type: Microsoft.SPOTEventArgs
An EventArgs instance that carries additional parameters accompanying the trigger event.
See Also