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