mscorlib(4.0.0.0) API with additions
IXmlNamespaceResolver.cs
2 
3 namespace System.Xml
4 {
6  [global::__DynamicallyInvokable]
7  public interface IXmlNamespaceResolver
8  {
12  [global::__DynamicallyInvokable]
14 
18  [global::__DynamicallyInvokable]
19  string LookupNamespace(string prefix);
20 
24  [global::__DynamicallyInvokable]
25  string LookupPrefix(string namespaceName);
26  }
27 }
Definition: __Canon.cs:3
string LookupNamespace(string prefix)
Gets the namespace URI mapped to the specified prefix.
XmlNamespaceScope
Defines the namespace scope.
IDictionary< string, string > GetNamespacesInScope(XmlNamespaceScope scope)
Gets a collection of defined prefix-namespace mappings that are currently in scope.
string LookupPrefix(string namespaceName)
Gets the prefix that is mapped to the specified namespace URI.
Provides read-only access to a set of prefix and namespace mappings.