/// <summary> /// Gets a collection of namespace names keyed by prefix which can be used to enumerate the namespaces currently in scope. /// </summary> /// <param name="scope">An <see cref="T:System.Xml.XmlNamespaceScope"/> value that specifies the type of namespace nodes to return.</param> /// <returns> /// A <see cref="T:System.Collections.Specialized.StringDictionary"/> object containing a collection of namespace and prefix pairs currently in scope. /// </returns> public override IDictionary <string, string> GetNamespacesInScope(XmlNamespaceScope scope) { return(_baseContext.GetNamespacesInScope(scope)); }