Enum SerializeMode
Defines constants for specifying the persistence medium to be used for serialization.
Namespace: Syncfusion.Runtime.Serialization
Assembly: Syncfusion.Shared.Base.dll
Syntax
public enum SerializeMode
Remarks
The SerializeMode enumeration defines constants for specifying the persistence medium. This enum is used by the AppStateSerializer class as well as by several other Syncfusion components.
Fields
Name | Description |
---|---|
BinaryFile | A Binary file is used for reading / writing the state information. |
BinaryFmtStream | An externally provided Stream is used for reading / writing the state information in a binary format. |
IsolatedStorage | The IsolatedStorage is used for reading / writing the state information. |
WindowsRegistry | The Win32 WindowsRegistry is used for reading / writing the state information. |
XMLFile | A .XML file is used for reading / writing the state information. |
XMLFmtStream | An externally provided Stream is used for reading / writing the state information in an XML format. |