Class RecordingCorrelationLane

Namespace
Kuestenlogik.Bowire.Recordings.Correlation
Assembly
Kuestenlogik.Bowire.Recordings.dll

One protocol lane.

public sealed record RecordingCorrelationLane : IEquatable<RecordingCorrelationLane>
Inheritance
RecordingCorrelationLane
Implements
Inherited Members

Constructors

RecordingCorrelationLane(string, int, int, int)

One protocol lane.

public RecordingCorrelationLane(string Protocol, int StepCount, int MatchedCount, int DerivedCount = 0)

Parameters

Protocol string

Lane key — the step's protocol field.

StepCount int

Steps in this lane.

MatchedCount int

Steps in this lane that matched — strong, weak or derived.

DerivedCount int

How many of MatchedCount got there through a bridge value rather than the key itself (#545).

Properties

DerivedCount

How many of MatchedCount got there through a bridge value rather than the key itself (#545).

public int DerivedCount { get; init; }

Property Value

int

MatchedCount

Steps in this lane that matched — strong, weak or derived.

public int MatchedCount { get; init; }

Property Value

int

Protocol

Lane key — the step's protocol field.

public string Protocol { get; init; }

Property Value

string

StepCount

Steps in this lane.

public int StepCount { get; init; }

Property Value

int

Methods

Deconstruct(out string, out int, out int, out int)

public void Deconstruct(out string Protocol, out int StepCount, out int MatchedCount, out int DerivedCount)

Parameters

Protocol string
StepCount int
MatchedCount int
DerivedCount int

Equals(RecordingCorrelationLane?)

public bool Equals(RecordingCorrelationLane? other)

Parameters

other RecordingCorrelationLane

Returns

bool

Equals(object?)

public override bool Equals(object? obj)

Parameters

obj object

Returns

bool

GetHashCode()

public override int GetHashCode()

Returns

int

ToString()

public override string ToString()

Returns

string

Operators

operator ==(RecordingCorrelationLane?, RecordingCorrelationLane?)

public static bool operator ==(RecordingCorrelationLane? left, RecordingCorrelationLane? right)

Parameters

left RecordingCorrelationLane
right RecordingCorrelationLane

Returns

bool

operator !=(RecordingCorrelationLane?, RecordingCorrelationLane?)

public static bool operator !=(RecordingCorrelationLane? left, RecordingCorrelationLane? right)

Parameters

left RecordingCorrelationLane
right RecordingCorrelationLane

Returns

bool