ErrorCheckOptions Enumeration

Represents a list of options for error checking in a tree.

Definition

Namespace: MobileTrack.Common.Models.TreeViews.ItemTree.EntityTree
Assembly: MobileTrack.Common (in MobileTrack.Common.dll) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
[FlagsAttribute]
public enum ErrorCheckOptions

Members

None0 No error checks
CyclicIdDuplicates1 Check for ID cycles (duplicate Ids in single paths)
SiblingIdDuplicates2 Check for ID duplicates among siblings
SiblingAliasDuplicates4 Check for alias (name) duplicates among siblings
TreeScopeIdDuplicates8 Check for ID duplicates across entire tree. If this flag is set, CyclicIdDuplicates and SiblingIdDuplicates are ignored because both of these checks will be covered.
Default12 Uses the SiblingAliasDuplicates settings and the SiblingIdDuplicates settings.
All15 Uses all error check options

See Also