SolFSStorage.IsCorrupted property
Filter:
Pascal DLL C++ (DLL/Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
Returns true if the storage integrity possibly has problems.
Declaration
[Pascal]
property IsCorrupted: boolean;
[DLL]
long _stdcall StorageIsCorrupted(unsigned long Storage,
Bool *Corrupted);
[C++ (DLL/Lib)]
bool get_IsCorrupted()
[C++ (VCL)]
__property bool IsCorrupted;
[C++ (.NET)]
bool get_IsCorrupted()
[C#]
bool IsCorrupted
[VB.NET]
Property IsCorrupted As Boolean
[DLL] Parameters
- [DLL] Storage - handle to the storage returned by Create or Open function.
- [DLL] Corrupted - returns the value of the property.
[DLL] Return values
0 if the function succeeded or one of Error codes if the function failed.
Description
Use this property to know if the storage is corrupted. Corruption flag is set by any operation if it detects storage integrity corruption. The flag is cleared when you call CheckAndRepair on the storage.
