Class FlowDataRow

Namespace
Kuestenlogik.Bowire.Flows
Assembly
Kuestenlogik.Bowire.Flows.dll

One expanded data row — the column values join the {{var}} resolver scope for a single step execution, the label names the row in reports (step[label]).

public sealed class FlowDataRow
Inheritance
FlowDataRow
Inherited Members

Constructors

FlowDataRow(IReadOnlyDictionary<string, string>, string)

Create a row from its column map and report label.

public FlowDataRow(IReadOnlyDictionary<string, string> values, string label)

Parameters

values IReadOnlyDictionary<string, string>
label string

Properties

Label

Report label — the LabelColumn value or the zero-based row index.

public string Label { get; }

Property Value

string

Values

Column name → stringified value, ordinal-cased like the resolver scope.

public IReadOnlyDictionary<string, string> Values { get; }

Property Value

IReadOnlyDictionary<string, string>