| ReadOptions Constructor (Boolean, Boolean, Boolean, Boolean) |
Namespace:
LinkarCommon
Assemblies:
LinkarClientCore (in LinkarClientCore.dll) Version: 2.1.0.0
LinkarClientMono (in LinkarClientMono.dll) Version: 2.1.0.0 (2.1.0.0)
LinkarClient (in LinkarClient.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public ReadOptions(
bool calculated,
bool conversion = false,
bool formatSpec = false,
bool originalRecords = false
)
Public Sub New (
calculated As Boolean,
Optional conversion As Boolean = false,
Optional formatSpec As Boolean = false,
Optional originalRecords As Boolean = false
)
public:
ReadOptions(
bool calculated,
bool conversion = false,
bool formatSpec = false,
bool originalRecords = false
)
new :
calculated : bool *
?conversion : bool *
?formatSpec : bool *
?originalRecords : bool
(* Defaults:
let _conversion = defaultArg conversion false
let _formatSpec = defaultArg formatSpec false
let _originalRecords = defaultArg originalRecords false
*)
-> ReadOptions
Parameters
- calculated
- Type: SystemBoolean
Return the resulting values from the calculated dictionaries. - conversion (Optional)
- Type: SystemBoolean
Execute the defined conversions in the dictionaries before returning. - formatSpec (Optional)
- Type: SystemBoolean
Execute the defined formats in the dictionaries before returning. - originalRecords (Optional)
- Type: SystemBoolean
Return a copy of the records in MV format.
See Also