InterprocessCacheLoadFileData Method
Handles deserialization of file from disk; virtual method allows customization (e.g., pre-load decryption and/or data merge).
Namespace: Gemstone.IOAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.136 -- Release Build+d454dafd53fcce88fce9c0a8ec8597176c30b791
protected virtual byte[] LoadFileData(
FileStream fileStream
)
Protected Overridable Function LoadFileData (
fileStream As FileStream
) As Byte()
protected:
virtual array<unsigned char>^ LoadFileData(
FileStream^ fileStream
)
function LoadFileData(fileStream);
- fileStream FileStream
- FileStream used to deserialize data.
ByteDeserialized file data.
Consumers overriding this method should not directly call
FileData property to avoid potential dead-locks.