Click or drag to resize
IncludeToParentEnum Enumeration
Determines whether objects of child types are included into the export/staging data of parent objects.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
public enum IncludeToParentEnum
Members
  Member nameValueDescription
None0 Objects of the child type are not included in the data of parent objects.
Complete1 The data of parent objects includes all existing child objects of the given type. Import/staging adds new child objects or updates existing ones. Deletes child objects that exist on the target instance, but are missing in the data of the updated parent.
Incremental2 The data of parent objects includes all existing child objects of the given type. Import/staging adds new child objects or updates existing ones. Does not delete child objects that exist on the target instance, but are missing in the data of the updated parent.
Default3 Default inclusion. Do NOT assign this value manually.
Remarks
See Also