Click or drag to resize

InterprocessCacheSaveFileData Method

Handles serialization of file to disk; virtual method allows customization (e.g., pre-save encryption and/or data merge).

Namespace: GSF.IO
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.307-beta+9737fd9b0b4f87709e68c099d312e6b151025dc8
Syntax
protected virtual void SaveFileData(
	FileStream fileStream,
	byte[] fileData
)
View Source

Parameters

fileStream  FileStream
FileStream used to serialize data.
fileData  Byte
File data to be serialized.
Remarks
Consumers overriding this method should not directly call FileData property to avoid potential dead-locks.
See Also