| DeleteOptions(Boolean, RecoverIdType) Constructor |
Linkar Framework for .NET and Core
Initializes a new instance of the DeleteOptions class
Namespace: Linkar.FunctionsAssembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntax public DeleteOptions(
bool optimisticLockControl,
RecoverIdType recoverIdType = null
)
Public Sub New (
optimisticLockControl As Boolean,
Optional recoverIdType As RecoverIdType = Nothing
)
public:
DeleteOptions(
bool optimisticLockControl,
RecoverIdType^ recoverIdType = nullptr
)
new :
optimisticLockControl : bool *
?recoverIdType : RecoverIdType
(* Defaults:
let _recoverIdType = defaultArg recoverIdType null
*)
-> DeleteOptions
Parameters
- optimisticLockControl Boolean
- In the execution of the Delete function, before updating the record, checks out if the record has not been modified by other user. See OptimisticLockControl property.
- recoverIdType RecoverIdType (Optional)
- Specifies the recovery technique for deleted item IDs.
See Also