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

◆ CheckAttributePrefix()

string System.Xml.Xsl.Runtime.XmlQueryOutput.CheckAttributePrefix ( string prefix,
string ns )
inlineprivate

Definition at line 870 of file XmlQueryOutput.cs.

871 {
872 if (_nsmgr == null)
873 {
875 }
876 else
877 {
878 while (true)
879 {
881 if (!(text != ns))
882 {
883 break;
884 }
885 if (text != null)
886 {
888 continue;
889 }
890 AddNamespace(prefix, ns);
891 break;
892 }
893 }
894 return prefix;
895 }
virtual ? string LookupNamespace(string prefix)
void WriteNamespaceDeclarationUnchecked(string prefix, string ns)
void AddNamespace(string prefix, string ns)
string RemapPrefix(string prefix, string ns, bool isElemPrefix)

References System.Xml.Xsl.Runtime.XmlQueryOutput._nsmgr, System.Xml.Xsl.Runtime.XmlQueryOutput.AddNamespace(), System.Xml.XmlNamespaceManager.LookupNamespace(), System.prefix, System.Xml.Xsl.Runtime.XmlQueryOutput.RemapPrefix(), System.text, and System.Xml.Xsl.Runtime.XmlQueryOutput.WriteNamespaceDeclarationUnchecked().

Referenced by System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttribute().