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.316-beta+461e40cb239c8ff1c2b7471a13bb1d1852a92e83
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