using System; namespace HtmlHelp.ChmDecoding { /// /// Enumeration for specifying the extraction mode of an toc or index item. /// public enum DataMode { /// /// TextBased - this item comes from a text-based sitemap file /// TextBased = 0, /// /// Binary - this item was extracted out of a binary stream /// Binary = 1 } }