XmlQueryDialect.cs 184 B

1234567891011121314151617
  1. //
  2. // XmlQueryDialect.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_1_2
  8. namespace System.Xml
  9. {
  10. public enum XmlQueryDialect
  11. {
  12. XPath1,
  13. XQuery
  14. }
  15. }
  16. #endif