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

◆ ReadContentAsQualifiedName()

virtual void System.Xml.XmlDictionaryReader.ReadContentAsQualifiedName ( out string localName,
out string namespaceUri )
inlinevirtualinherited

Definition at line 1080 of file XmlDictionaryReader.cs.

1081 {
1082 XmlConverter.ToQualifiedName(ReadContentAsString(), out string prefix, out localName);
1083 namespaceUri = LookupNamespace(prefix);
1084 if (namespaceUri == null)
1085 {
1086 XmlExceptionHelper.ThrowUndefinedPrefix(this, prefix);
1087 }
1088 }
string? LookupNamespace(string prefix)

References System.Xml.Dictionary, System.Xml.XmlReader.LookupNamespace(), System.prefix, System.Xml.XmlDictionaryReader.ReadContentAsString(), System.Xml.XmlExceptionHelper.ThrowUndefinedPrefix(), and System.Xml.XmlConverter.ToQualifiedName().