Class InputPin<T>
Represents an input pin containing a value of type T on a INode
public sealed class InputPin<T> : Pin, IPin
Type Parameters
T
- Inheritance
-
objectCorePropertyChangedInputPin<T>
- Implements
- Inherited Members
Properties
Direction
Gets the direction of the pin
public override PinDirection Direction { get; }
Property Value
PinValue
Gets the value the pin holds
public override object? PinValue { get; }
Property Value
- object
Type
Gets the type of value the pin holds
public override Type Type { get; }
Property Value
Value
Gets or sets the value of the input pin
public T? Value { get; }
Property Value
- T