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.275-beta+5a507085c1b79f1427cd1812b9c3c9c583c21079
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