Header menu logo Xanthos

RecordParseError Type

Errors that can occur during record parsing.

Union cases

Union case Description

CodeTableLookupFailed(table, value)

Full Usage: CodeTableLookupFailed(table, value)

Parameters:
    table : string
    value : string

Code table lookup returned no match.

table : string
value : string

FieldExtractionFailed(fieldName, reason)

Full Usage: FieldExtractionFailed(fieldName, reason)

Parameters:
    fieldName : string
    reason : string

Field extraction failed (encoding error, etc.).

fieldName : string
reason : string

InvalidFieldValue(fieldName, value, reason)

Full Usage: InvalidFieldValue(fieldName, value, reason)

Parameters:
    fieldName : string
    value : string
    reason : string

Field value is invalid for its expected type.

fieldName : string
value : string
reason : string

RecordTooShort(expected, actual)

Full Usage: RecordTooShort(expected, actual)

Parameters:
    expected : int
    actual : int

Record data is shorter than expected for the field.

expected : int
actual : int

UnknownRecordType typeId

Full Usage: UnknownRecordType typeId

Parameters:
    typeId : string

Record type identifier not recognized.

typeId : string

Instance members

Instance member Description

this.IsCodeTableLookupFailed

Full Usage: this.IsCodeTableLookupFailed

Returns: bool
Returns: bool

this.IsFieldExtractionFailed

Full Usage: this.IsFieldExtractionFailed

Returns: bool
Returns: bool

this.IsInvalidFieldValue

Full Usage: this.IsInvalidFieldValue

Returns: bool
Returns: bool

this.IsRecordTooShort

Full Usage: this.IsRecordTooShort

Returns: bool
Returns: bool

this.IsUnknownRecordType

Full Usage: this.IsUnknownRecordType

Returns: bool
Returns: bool

Type something to start searching.