Click or drag to resize
StaMaStateDoAction Property
Gets the StateMachineDoActionCallback delegate that defines the perpetual action to be executed while the StateMachine is in this State.

Namespace: StaMa
Assembly: StaMa (in StaMa.dll) Version: 2.3.1.7
Syntax
public StateMachineDoActionCallback DoAction { get; }

Property Value

Type: StateMachineDoActionCallback
A StateMachineDoActionCallback delegate or null if no do action is defined.
Remarks
This callback will be executed from within SendTriggerEvent(Object, EventArgs) or SendTriggerEvent(Object). after every individual state change or one time in case no state change occurred in the invocation.
See Also