Table of Contents

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

Id int

Port id.

IsInput bool

Input (true) or output port.

Name string

Set name.

Kind string

Kind name.

Neurons int[]

Neuron indices in set order.

Properties

Id

Port id.

public int Id { get; init; }

Property Value

int

IsInput

Input (true) or output port.

public bool IsInput { get; init; }

Property Value

bool

Kind

Kind name.

public string Kind { get; init; }

Property Value

string

Name

Set name.

public string Name { get; init; }

Property Value

string

Neurons

Neuron indices in set order.

public int[] Neurons { get; init; }

Property Value

int[]