Table of Contents

Class InputPin<T>

Namespace
Artemis.Core
Assembly
Artemis.Core.dll

Represents an input pin containing a value of type T on a INode

public sealed class InputPin<T> : Pin, IPin

Type Parameters

T
Inheritance
object
CorePropertyChanged
InputPin<T>
Implements
Inherited Members

Properties

Direction

Gets the direction of the pin

public override PinDirection Direction { get; }

Property Value

PinDirection

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

Type

Value

Gets or sets the value of the input pin

public T? Value { get; }

Property Value

T