Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ LookupNamespace() [1/3]

string System.Xml.XmlTextReaderImpl.LookupNamespace ( NodeData node)
inlineprivate

Definition at line 7038 of file XmlTextReaderImpl.cs.

7039 {
7040 string text = _namespaceManager.LookupNamespace(node.prefix);
7041 if (text != null)
7042 {
7043 return text;
7044 }
7045 Throw(System.SR.Xml_UnknownNs, node.prefix, node.LineNo, node.LinePos);
7046 return null;
7047 }
static string Xml_UnknownNs
Definition SR.cs:72
Definition SR.cs:7
virtual ? string LookupNamespace(string prefix)
XmlNamespaceManager _namespaceManager
void Throw(int pos, string res, string arg)

References System.Xml.XmlTextReaderImpl._namespaceManager, System.Xml.XmlNamespaceManager.LookupNamespace(), System.text, System.Xml.XmlTextReaderImpl.Throw(), and System.SR.Xml_UnknownNs.