You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
149 B

  1. using System;
  2. public enum XMLTokenType
  3. {
  4. None,
  5. Declaration,
  6. EntityElement,
  7. StartElement,
  8. EndElement,
  9. Attribute,
  10. Text,
  11. Entity
  12. }