Class RecordedPort
- Namespace
- DotFly
- Assembly
- DotFly.Engine.dll
A port as recorded.
public sealed record RecordedPort : IEquatable<RecordedPort>
- Inheritance
-
RecordedPort
- Implements
- Inherited Members
Constructors
RecordedPort(int, bool, string, string, int[])
A port as recorded.
public RecordedPort(int Id, bool IsInput, string Name, string Kind, int[] Neurons)
Parameters
IdintPort id.
IsInputboolInput (true) or output port.
NamestringSet name.
KindstringKind name.
Neuronsint[]Neuron indices in set order.
Properties
Id
Port id.
public int Id { get; init; }
Property Value
IsInput
Input (true) or output port.
public bool IsInput { get; init; }
Property Value
Kind
Kind name.
public string Kind { get; init; }
Property Value
Name
Set name.
public string Name { get; init; }
Property Value
Neurons
Neuron indices in set order.
public int[] Neurons { get; init; }
Property Value
- int[]