Class OutputPin<T>
Represents an output pin containing a value of type T
on a INode
Implements
Inherited Members
Namespace: Artemis.Core
Assembly: Artemis.Core.dll
Syntax
public sealed class OutputPin<T> : Pin, IPin
Type Parameters
Name | Description |
---|---|
T |
Properties
Direction
Gets the direction of the pin
Declaration
public override PinDirection Direction { get; }
Property Value
Type | Description |
---|---|
PinDirection |
Overrides
PinValue
Gets the value the pin holds
Declaration
public override object? PinValue { get; }
Property Value
Type | Description |
---|---|
object |
Overrides
Type
Gets the type of value the pin holds
Declaration
public override Type Type { get; }
Property Value
Type | Description |
---|---|
Type |
Overrides
Value
Gets or sets the value of the output pin
Declaration
public T? Value { get; set; }
Property Value
Type | Description |
---|---|
T |