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

◆ Sign()

void System.Xml.XmlBaseWriter.NamespaceManager.Sign ( XmlCanonicalWriter signingWriter)
inline

Definition at line 658 of file XmlBaseWriter.cs.

659 {
660 int nsCount = _nsCount;
661 for (int i = 1; i < nsCount; i++)
662 {
663 Namespace @namespace = _namespaces[i];
664 bool flag = false;
665 for (int j = i + 1; j < nsCount; j++)
666 {
667 if (flag)
668 {
669 break;
670 }
672 }
673 if (!flag)
674 {
675 signingWriter.WriteXmlnsAttribute(@namespace.Prefix, @namespace.Uri);
676 }
677 }
678 }

References System.Xml.XmlBaseWriter.NamespaceManager._namespaces, System.Xml.XmlBaseWriter.NamespaceManager._nsCount, System.Runtime.Serialization.Dictionary, System.Xml.Dictionary, and System.Xml.XmlBaseWriter.NamespaceManager.Namespace.Prefix.

Referenced by System.Xml.XmlBaseWriter.SignScope().