Click or drag to resize

SkipUnknownTag Enumeration

Enumeration used in parser settings to skip unlocated tags.

Namespace: Patagames.GedcomNetSdk.Enums
Assembly: Patagames.Gedcom.Net.Sdk (in Patagames.Gedcom.Net.Sdk.dll) Version: 1.0.8
Syntax
public enum SkipUnknownTag
Members
Member nameValueDescription
None0 Don't skip any tags. In this case, if an unknown tag is encountered, an UnknownTagException will be thrown.
All1 Skip all encountered unknown tags. Such tags will be placed in the UnknownTags collection of the corresponding context, for further analysis by the end user application.
Specified2 Skip only the specified unknown tags. The list of tags for the skip must be indicated in collection UnknownTags.
See Also