XmlNamespaceScope.cs 311 B

123456789101112131415161718192021
  1. //
  2. // XmlNamespaceScope.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // Note that this is different from "XPathNamespaceScope"
  8. // while the member definitions are all the same.
  9. //
  10. #if NET_1_2
  11. namespace System.Xml
  12. {
  13. public enum XmlNamespaceScope
  14. {
  15. All,
  16. ExcludeXml,
  17. Local
  18. }
  19. }
  20. #endif