5 instantiations of NsDecl
System.Data.SqlXml (5)
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (1)
1279newtemplate.Namespaces = new NsDecl(newtemplate.Namespaces, scoperecord.ncName, scoperecord.nsUri);
System\Xml\Xsl\Xslt\XsltInput.cs (3)
811ctxInfo.nsList = new NsDecl(ctxInfo.nsList, /*prefix:*/null, /*nsUri:*/null); // null, null means Exlusion #all 832ctxInfo.nsList = new NsDecl(ctxInfo.nsList, /*prefix:*/null, list[idx]); // null means that this Exlusion NS 985nsList = new NsDecl(nsList, prefix, nsUri);
System\Xml\Xsl\Xslt\XsltLoader.cs (1)
2824thisList = new NsDecl(thisList, parentList.Prefix, parentList.NsUri);
18 references to NsDecl
System.Data.SqlXml (18)
System\Xml\Xsl\Xslt\CompilerScopeManager.cs (1)
90public bool EnterScope(NsDecl nsDecl) {
System\Xml\Xsl\Xslt\XslAst.cs (3)
64public readonly NsDecl Prev; 68public NsDecl(NsDecl prev, string prefix, string nsUri) { 79public NsDecl Namespaces;
System\Xml\Xsl\Xslt\XsltInput.cs (1)
967public NsDecl nsList;
System\Xml\Xsl\Xslt\XsltLoader.cs (13)
439private void LoadStripSpace(NsDecl stylesheetNsList) { 449private void LoadPreserveSpace(NsDecl stylesheetNsList) { 700private void LoadKey(NsDecl stylesheetNsList) { 758private void LoadDecimalFormat(NsDecl stylesheetNsList) { 830private void LoadNamespaceAlias(NsDecl stylesheetNsList) { 872private void LoadAttributeSet(NsDecl stylesheetNsList) { 922private void LoadGlobalVariableOrParameter(NsDecl stylesheetNsList, XslNodeType nodeType) { 939private void LoadTemplate(NsDecl stylesheetNsList) { 1075private void LoadMsScript(NsDecl stylesheetNsList) { 2804private static NsDecl MergeNamespaces(NsDecl thisList, NsDecl parentList) { 2814for (NsDecl tmp = thisList; tmp != null; tmp = tmp.Prev) {