Click or drag to resize
StaMaStateMachineActionCallback Delegate
Represents a method that will be called when a State entry, exit or Transition action shall be executed.

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

Parameters

stateMachine
Type: StaMaStateMachine
The StateMachine instance that requests invocation of the method.
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