Class OutputPin
Represents an output pin on a INode
public sealed class OutputPin : Pin, IPin
- Inheritance
-
objectCorePropertyChangedOutputPin
- 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 output pin
public object? Value { get; set; }
Property Value
- object
Methods
ChangeType(Type)
Changes the type of this pin, disconnecting any pins that are incompatible with the new type.
public void ChangeType(Type type)
Parameters
typeTypeThe new type of the pin.