  | UpdateOptions(Boolean, Boolean, Boolean, Boolean, Boolean, Boolean) Constructor | 
Linkar Framework for .NET and Core
            Initializes a new instance of the UpdateOptions class.
            
Namespace: Linkar.FunctionsAssembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntaxpublic UpdateOptions(
	bool optimisticLockControl,
	bool readAfter = false,
	bool calculated = false,
	bool conversion = false,
	bool formatSpec = false,
	bool originalRecords = false
)
Public Sub New ( 
	optimisticLockControl As Boolean,
	Optional readAfter As Boolean = false,
	Optional calculated As Boolean = false,
	Optional conversion As Boolean = false,
	Optional formatSpec As Boolean = false,
	Optional originalRecords As Boolean = false
)
public:
UpdateOptions(
	bool optimisticLockControl, 
	bool readAfter = false, 
	bool calculated = false, 
	bool conversion = false, 
	bool formatSpec = false, 
	bool originalRecords = false
)
new : 
        optimisticLockControl : bool * 
        ?readAfter : bool * 
        ?calculated : bool * 
        ?conversion : bool * 
        ?formatSpec : bool * 
        ?originalRecords : bool 
(* Defaults:
        let _readAfter = defaultArg readAfter false
        let _calculated = defaultArg calculated false
        let _conversion = defaultArg conversion false
        let _formatSpec = defaultArg formatSpec false
        let _originalRecords = defaultArg originalRecords false
*)
-> UpdateOptionsParameters
- optimisticLockControl  Boolean
 - if "true", the Update function will check out if the file has not been modified by other user. See OptimisticLockControl property.
 - readAfter  Boolean  (Optional)
 - Reads the record again and returns it after the update. Calculated, conversion, formatSpec and originalRecords will only be applied if this option is true.
 - calculated  Boolean  (Optional)
 - Return the resulting values from the calculated dictionaries.
 - conversion  Boolean  (Optional)
 - Execute the defined conversions in the dictionaries before returning.
 - formatSpec  Boolean  (Optional)
 - Execute the defined formats in the dictionaries before returning.
 - originalRecords  Boolean  (Optional)
 - Return a copy of the records in MV format.
 
See Also