Skip to content

OrderedNodeProcessor<TBaseNode, TNode>.ShouldProcessDescendents Method

Overloads

Name Description
ShouldProcessDescendents(TBaseNode) Whether descendents of this node should be processed by the Pipeline<TBaseNode> or not. Defaults to true.
ShouldProcessDescendents(TNode) Whether descendents of this node should be processed by the Pipeline<TBaseNode> or not. Defaults to true.

ShouldProcessDescendents(TBaseNode)

Whether descendents of this node should be processed by the Pipeline<TBaseNode> or not. Defaults to true.

public sealed override bool ShouldProcessDescendents(TBaseNode node);

View source

Parameters

Name Type Description
node TBaseNode The node.

Returns

Boolean

true if descendents of node should be processed, false otherwise.

ShouldProcessDescendents(TNode)

Whether descendents of this node should be processed by the Pipeline<TBaseNode> or not. Defaults to true.

protected new virtual bool ShouldProcessDescendents(TNode node);

View source

Parameters

Name Type Description
node TNode The node.

Returns

Boolean

true if descendents of node should be processed, false otherwise.