IPort The constructed IPort.
Builds and returns the final IPort instance based on the current configuration of the builder.
Call this method after setting all desired configuration options using the builder methods.
The builder captures options such as the port's data type, display name, connector style, and default value, if applicable.
This method finalizes the port and adds it to the graph. After calling Build()
, do not modify the builder further.
This method is typically called at the end of a chain.
context.AddInputPort("MyPort") .WithDataType(typeof(float)) .WithDisplayName("My Float Port") .WithConnectorUI(PortConnectorUI.Circle) .Build();