| 1234567891011121314151617181920212223242526272829303132 |
- //
- // IXmlNamespaceResolver.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_1_2
- using System;
- using System.Collections.Specialized;
- using System.Security.Policy;
- using System.Xml.XPath;
- namespace System.Xml
- {
- public interface IXmlNamespaceResolver
- {
- XmlNameTable NameTable { get; }
- StringDictionary GetNamespacesInScope (XmlNamespaceScope scope);
- string LookupNamespace (string prefix);
- string LookupNamespace (string prefix, bool atomizedName);
- string LookupPrefix (string ns);
- string LookupPrefix (string ns, bool atomizedName);
- }
- }
- #endif
|