| 123456789101112131415161718192021 |
- //
- // XmlNamespaceScope.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // Note that this is different from "XPathNamespaceScope"
- // while the member definitions are all the same.
- //
- #if NET_1_2
- namespace System.Xml
- {
- public enum XmlNamespaceScope
- {
- All,
- ExcludeXml,
- Local
- }
- }
- #endif
|