// HtmlAgilityPack V1.0 - Simon Mourier namespace HtmlAgilityPack { /// /// Represents the type of fragment in a mixed code document. /// public enum MixedCodeDocumentFragmentType { /// /// The fragment contains code. /// Code, /// /// The fragment contains text. /// Text, } }