Click or drag to resize

TriggerShellStart method

Starts the trigger with the callback routine to be called as a parameter. The trigger is only actually restarted if all of the previously RegisterTriggerIt have also called Trigger.Start and the trigger is not already running.

Namespace: LogicalTaskTree
Assembly: LogicalTaskTree (in LogicalTaskTree.dll) Version: 1.0.0+df0404e911d6c38eaed3bb1bb1acfc482d417643
Syntax
public bool Start(
	
	Object? triggerController,
	
	Object? internalTriggerParameters,
	
	Action<TreeEvent> triggerIt
)

Parameters

triggerController  Object
The object that calls Trigger.Start.
internalTriggerParameters  Object
Specific call parameters or null.
triggerIt  ActionTreeEvent
The callback routine to be called when the trigger fires.

Return value

Boolean
True if the trigger was actually started by this call.

Implemented

INodeTriggerStart(Object, Object, ActionTreeEvent)
See also