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

◆ PopNamespaces()

void System.Xml.XmlSqlBinaryReader.PopNamespaces ( NamespaceDecl firstInScopeChain)
inlineprivate

Definition at line 2329 of file XmlSqlBinaryReader.cs.

2330 {
2332 while (namespaceDecl != null)
2333 {
2334 if (namespaceDecl.prevLink == null)
2335 {
2337 }
2338 else
2339 {
2340 _namespaces[namespaceDecl.prefix] = namespaceDecl.prevLink;
2341 }
2342 NamespaceDecl scopeLink = namespaceDecl.scopeLink;
2345 namespaceDecl = scopeLink;
2346 }
2347 }
bool ICollection< KeyValuePair< TKey, TValue > >. Remove(KeyValuePair< TKey, TValue > keyValuePair)
readonly Dictionary< string, NamespaceDecl > _namespaces

References System.Xml.XmlSqlBinaryReader._namespaces, System.Xml.Dictionary, and System.Collections.Generic.Dictionary< TKey, TValue >.Remove().

Referenced by System.Xml.XmlSqlBinaryReader.FinishEndElement().