Click or drag to resize
SerializationSettings Class
Determines how the system serializes object fields from the database into XML files. Represents serialization settings in the type information of objects.
Inheritance Hierarchy
SystemObject
  CMS.DataEngineSerializationSettings

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 10.0.0
Syntax
C#
public class SerializationSettings

The SerializationSettings type exposes the following members.

Constructors
  NameDescription
Public methodSerializationSettings
Constructor
Top
Properties
  NameDescription
Public propertyAdditionalFieldFilter
Predicate for excluded field selection.
Public propertyExcludedFieldNames
List of field names that are excluded when serializing objects.
Public propertyStructuredFields
Lists fields that contain structured data and cannot directly be serialized as inner text values of XML elements. Maps an IStructuredField implementation to every listed field, which defines how the serialization occurs.
Top
Methods
  NameDescription
Public methodGetStructuredField
Gets the structured field information for the field with the given name or null if the given field is not structured.
Public methodIsExcludedField
Returns true if the given object field name is excluded from the serialization.
Top
Remarks
Use in the SerializationSettings property of ObjectTypeInfo.
See Also