Skip to content

OrderedNodeProcessor<TBaseNode, TNode>.Process Method

Overloads

Name Description
Process(TBaseNode) Performs processing on the specified node. Does not process any descendents.
Process(TNode) Performs processing on the specified node. Does not process any descendents.

Process(TBaseNode)

Performs processing on the specified node. Does not process any descendents.

public sealed override TBaseNode Process(TBaseNode node);

View source

Parameters

Name Type Description
node TBaseNode The node to process.

Returns

TBaseNode

The root node of the tree, which may have been replaced.

Process(TNode)

Performs processing on the specified node. Does not process any descendents.

protected new abstract TBaseNode Process(TNode node);

Parameters

Name Type Description
node TNode The node to process.

Returns

TBaseNode

The root node of the tree, which may have been replaced.