Method Bypass
Bypass(GraphContext)
Default bypass behavior that forwards the first input slot to the first output slot when both slots share the same data type.
public override void Bypass(GraphContext context)
Parameters
contextGraphContextExecution context carrying graph resources and settings.
Remarks
Generator nodes, pure input nodes, and set-variable nodes naturally fall through because they do not expose both an input slot and an output slot. Nodes with more complex slot semantics should override this method.
Exceptions
- Exception
Thrown when called on an IOutputNode, which must define its own bypass behavior.