5 instantiations of NsDecl
System.Private.Xml (5)
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (1)
1438newtemplate.Namespaces = new NsDecl(newtemplate.Namespaces, scoperecord.ncName, scoperecord.nsUri);
System\Xml\Xsl\Xslt\XsltInput.cs (3)
954ctxInfo.nsList = new NsDecl(ctxInfo.nsList, /*prefix:*/null, /*nsUri:*/null); // null, null means Exlusion #all 985ctxInfo.nsList = new NsDecl(ctxInfo.nsList, /*prefix:*/null, list[idx]); // null means that this Exlusion NS 1160nsList = new NsDecl(nsList, prefix, nsUri);
System\Xml\Xsl\Xslt\XsltLoader.cs (1)
3131thisList = new NsDecl(thisList, parentList.Prefix, parentList.NsUri);
18 references to NsDecl
System.Private.Xml (18)
System\Xml\Xsl\Xslt\CompilerScopeManager.cs (1)
101public bool EnterScope([NotNullWhen(true)] NsDecl? nsDecl)
System\Xml\Xsl\Xslt\XslAst.cs (3)
62public readonly NsDecl? Prev; 66public NsDecl(NsDecl? prev, string? prefix, string? nsUri) 79public NsDecl? Namespaces;
System\Xml\Xsl\Xslt\XsltInput.cs (1)
1139public NsDecl? nsList;
System\Xml\Xsl\Xslt\XsltLoader.cs (13)
536private void LoadStripSpace(NsDecl? stylesheetNsList) 548private void LoadPreserveSpace(NsDecl? stylesheetNsList) 849private void LoadKey(NsDecl? stylesheetNsList) 921private void LoadDecimalFormat(NsDecl? stylesheetNsList) 1008private void LoadNamespaceAlias(NsDecl? stylesheetNsList) 1061private void LoadAttributeSet(NsDecl? stylesheetNsList) 1121private void LoadGlobalVariableOrParameter(NsDecl? stylesheetNsList) 1139private void LoadTemplate(NsDecl? stylesheetNsList) 1285private void LoadMsScript(NsDecl? stylesheetNsList) 3104private static NsDecl? MergeNamespaces(NsDecl? thisList, NsDecl? parentList) 3118for (NsDecl? tmp = thisList; tmp != null; tmp = tmp.Prev)