Application :: ignoreWriteProtection - Ignore permanent write protection
The property indicates, whether persistent write protection will be ignored or not (default). When the option is true, persistent write protection will not be checked when accessing data, i.e. instances that have been marked as permanent write protected by calling (Property::writeProtected(true)) can be updated anyhow.
The value is true when the function was executed successfully. Otherwise the value is set to false.
Implementation overview
- Get write protection state
Application :: ignoreWriteProtection (  ) - Set write protection handling
Application :: ignoreWriteProtection ( bWriteProtected )
Implementation details
-
Get write protection state
bool Application  :: ignoreWriteProtection (  )
The function returns true, when persistent write protection will be ignored and false otherwise.
to list
-
Set write protection handling
bool Application  :: ignoreWriteProtection ( bool bWriteProtected )
The function allows disabling the permanent write protection by passing true in bWriteProtected. Passing false, will enable write protection check.
The function should be called for maintenance purposes, e.g. in order to maintain redundancy).
- bWriteProtected
- Write protection required
In order to activate write protection, the value has to be set to true. Passing false will disable write protection.
to list
- bWriteProtected
- Write protection required