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
|
Full Usage:
BoolValue bool
Parameters:
bool
|
Boolean flag (true if field contains "1").
|
Full Usage:
BytesValue byte[]
Parameters:
byte[]
|
Raw byte array (unparsed).
|
Full Usage:
CodeValue string
Parameters:
string
|
Code table lookup value.
|
|
Parsed date, None if missing or invalid.
|
Full Usage:
DecimalValue decimal option
Parameters:
decimal option
|
Parsed decimal, None if missing or invalid.
|
Full Usage:
IntValue int option
Parameters:
int option
|
Parsed integer, None if missing or invalid.
|
Full Usage:
TextValue string
Parameters:
string
|
Parsed text string.
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsBoolValue
Returns: bool
|
|
Full Usage:
this.IsBytesValue
Returns: bool
|
|
Full Usage:
this.IsCodeValue
Returns: bool
|
|
Full Usage:
this.IsDateValue
Returns: bool
|
|
Full Usage:
this.IsDecimalValue
Returns: bool
|
|
Full Usage:
this.IsIntValue
Returns: bool
|
|
Full Usage:
this.IsTextValue
Returns: bool
|
|
Xanthos