Click or drag to resize
SerializationSettingsExcludedFieldNames Property
List of field names that are excluded when serializing objects.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 12.0.0
Syntax
C#
public ICollection<string> ExcludedFieldNames { get; }

Property Value

Type: ICollectionString
Remarks
By default, the system automatically excludes the object type's IDColumn, TimeStampColumn, VersionGUIDColumn and BinaryColumn.
Remarks
Collection is supposed to contain case insensitive values – when checking field name presence, preferably use IsExcludedField(String) method.
See Also