Do(Action<TreeListNode>, Predicate<TreeListNode>, Predicate<TreeListNode>, Predicate<TreeListNode>)
|
execute, canContinueIteration, canExecute, visitChildren
|
Performs an operation across all Tree List nodes that fit the specific criteria. Defines a separate criteria to check whether or not this operation should be applied to child nodes as well.
|
Do(Action<TreeListNode>, Predicate<TreeListNode>, Predicate<TreeListNode>)
|
execute, canContinueIteration, canExecute
|
Performs an operation across all Tree List nodes that fit the specific criteria.
|
Do(Action<TreeListNode>, Predicate<TreeListNode>)
|
execute, canContinueIteration
|
Performs the specific operation across all Tree List nodes.
|
Do(Action<TreeListNode>)
|
execute
|
Performs the specific operation across all Tree List nodes.
|