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.284-beta+805ed69bbaa748bda5f49830845a2ffff2791ae0
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