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

◆ IsExtensionNamespace()

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

Definition at line 109 of file InputScopeManager.cs.

110 {
111 for (InputScope inputScope = _scopeStack; inputScope != null; inputScope = inputScope.Parent)
112 {
113 if (inputScope.IsExtensionNamespace(nspace))
114 {
115 return true;
116 }
117 }
118 return false;
119 }

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

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