Header menu logo Xanthos

FieldValue Type

Represents a parsed field value with type information.

This is the simplified variant used for most parsing operations. Option types are used to represent missing/invalid values in numeric and date fields.

Union cases

Union case Description

BoolValue bool

Full Usage: BoolValue bool

Parameters:
    Item : bool

Boolean flag (true if field contains "1").

Item : bool

BytesValue byte[]

Full Usage: BytesValue byte[]

Parameters:
    Item : byte[]

Raw byte array (unparsed).

Item : byte[]

CodeValue string

Full Usage: CodeValue string

Parameters:
    Item : string

Code table lookup value.

Item : string

DateValue DateTime option

Full Usage: DateValue DateTime option

Parameters:

Parsed date, None if missing or invalid.

Item : DateTime option

DecimalValue decimal option

Full Usage: DecimalValue decimal option

Parameters:
    Item : decimal option

Parsed decimal, None if missing or invalid.

Item : decimal option

IntValue int option

Full Usage: IntValue int option

Parameters:
    Item : int option

Parsed integer, None if missing or invalid.

Item : int option

TextValue string

Full Usage: TextValue string

Parameters:
    Item : string

Parsed text string.

Item : string

Instance members

Instance member Description

this.IsBoolValue

Full Usage: this.IsBoolValue

Returns: bool
Returns: bool

this.IsBytesValue

Full Usage: this.IsBytesValue

Returns: bool
Returns: bool

this.IsCodeValue

Full Usage: this.IsCodeValue

Returns: bool
Returns: bool

this.IsDateValue

Full Usage: this.IsDateValue

Returns: bool
Returns: bool

this.IsDecimalValue

Full Usage: this.IsDecimalValue

Returns: bool
Returns: bool

this.IsIntValue

Full Usage: this.IsIntValue

Returns: bool
Returns: bool

this.IsTextValue

Full Usage: this.IsTextValue

Returns: bool
Returns: bool

Type something to start searching.