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

◆ WriteNamespaceDeclaration()

override void System.Xml.Xsl.Runtime.XmlRawWriterWrapper.WriteNamespaceDeclaration ( string prefix,
string ns )
inlinepackage

Definition at line 181 of file XmlRawWriterWrapper.cs.

182 {
183 if (prefix.Length == 0)
184 {
185 _wrapped.WriteAttributeString(string.Empty, "xmlns", "http://www.w3.org/2000/xmlns/", ns);
186 }
187 else
188 {
189 _wrapped.WriteAttributeString("xmlns", prefix, "http://www.w3.org/2000/xmlns/", ns);
190 }
191 }
void WriteAttributeString(string localName, string? ns, string? value)
Definition XmlWriter.cs:46

References System.Xml.Xsl.Runtime.XmlRawWriterWrapper._wrapped, System.prefix, and System.Xml.XmlWriter.WriteAttributeString().