Class SerializationParams
Parameters controlling the serialization process in implementations of ISerializer
Inherited Members
Namespace: Quantellia.WMServer.Serialization
Assembly: WMServer.dll
Syntax
public class SerializationParams
Properties
IncludeWMMetadata
Include World Modeler Metadata from WMAppInfo as the first entry in the output data.
Declaration
public bool IncludeWMMetadata { get; set; }
Property Value
Type | Description |
---|---|
bool |
KeepConnectionOpen
If true, keeps the connection open after serialization/deserialization is complete. This allows subsequent calls to SerializeObjects(IEnumerable<object>, SerializationParams?) and DeserializeObjects<T>(Func<T, bool>) to skip the need to open a new connection every time.
Declaration
public bool KeepConnectionOpen { get; set; }
Property Value
Type | Description |
---|---|
bool |