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

◆ IsExcludedNamespace()

bool System.Xml.Xsl.XsltOld.InputScopeManager.IsExcludedNamespace ( string nspace)
inlinepackage

Definition at line 129 of file InputScopeManager.cs.

130 {
131 for (InputScope inputScope = _scopeStack; inputScope != null; inputScope = inputScope.Parent)
132 {
133 if (inputScope.IsExcludedNamespace(nspace))
134 {
135 return true;
136 }
137 }
138 return false;
139 }

References System.Xml.Xsl.XsltOld.InputScopeManager._scopeStack, System.Xml.Dictionary, and System.Xml.Xsl.XsltOld.InputScope.Parent.

Referenced by System.Xml.Xsl.XsltOld.Compiler.IsExcludedNamespace().