Enum SerializeXmlBehavior
Defines how to serialize property when style data is serialized to or from an XML stream. with System.Xml.Serialization.XmlSerializer.
Namespace: Syncfusion.Styles
Assembly: Syncfusion.Shared.Base.dll
Syntax
public enum SerializeXmlBehavior
Fields
Name | Description |
---|---|
Default | Default. Serialize as string when type is simple. Using XmlSerializer for complex types or properties where the actual type is not known at compile-time (e.g. CellValue). |
SerializeAsString | Serialize this property as string using FormatValue(Object) and ParseValue(String). |
SerializeWithXmlSerializer | Serialize this property using System.Xml.Serialization.XmlSerializer. |
Skip | Skip this property. Do not serialize. |