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.266-beta+c6b78f50c57a6e00a35ffa6b1d344e516617d5cd
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