OrderedNodeProcessor<TContext, TBaseNode, TNode>.ShouldProcessDescendents Method
Overloads
| Name | Description |
|---|---|
ShouldProcessDescendents(TContext, TBaseNode) |
Whether descendents of this node should be processed by the Pipeline<TBaseNode> or not. Defaults to true. |
ShouldProcessDescendents(TContext, TNode) |
Whether descendents of this node should be processed by the Pipeline<TContext, TBaseNode> or not. Defaults to true. |
ShouldProcessDescendents(TContext, TBaseNode)
Whether descendents of this node should be processed by the Pipeline<TBaseNode> or not. Defaults to true.
public sealed override bool ShouldProcessDescendents(TContext? context, TBaseNode node);
Parameters
| Name | Type | Description |
|---|---|---|
context |
TContext |
The processing context. |
node |
TBaseNode |
The node. |
Returns
true if descendents of node should be processed, false otherwise.
ShouldProcessDescendents(TContext, TNode)
Whether descendents of this node should be processed by the Pipeline<TContext, TBaseNode> or not. Defaults to true.
protected new virtual bool ShouldProcessDescendents(TContext? context, TNode node);
Parameters
| Name | Type | Description |
|---|---|---|
context |
TContext |
The processing context. |
node |
TNode |
The node. |
Returns
true if descendents of node should be processed, false otherwise.