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