Table of Contents

Class FlowError<T>

Namespace
Crosser.EdgeNode.Flows
Assembly
Crosser.EdgeNode.Flows.dll
public record FlowError<T> : IEquatable<FlowError<T>>

Type Parameters

T
Inheritance
FlowError<T>
Implements
Inherited Members

Constructors

FlowError(T?, FlowErrorCode, string?)

public FlowError(T? data, FlowErrorCode errorCode, string? message)

Parameters

data T
errorCode FlowErrorCode
message string

Properties

ErrorText

public string ErrorText { get; }

Property Value

string

data

public T? data { get; init; }

Property Value

T

errorCode

public FlowErrorCode errorCode { get; init; }

Property Value

FlowErrorCode

message

public string? message { get; init; }

Property Value

string