1 instantiation of NamespaceDecl
System.Private.Xml (1)
System\Xml\Xsl\XsltOld\DocumentScope.cs (1)
22this.scopes = new NamespaceDecl(prefix, uri, prevDefaultNsUri, this.scopes);
12 references to NamespaceDecl
System.Private.Xml (12)
System\Xml\Xsl\XsltOld\DocumentScope.cs (5)
13protected NamespaceDecl? scopes; 15internal NamespaceDecl? Scopes 20internal NamespaceDecl AddNamespace(string prefix, string uri, string prevDefaultNsUri) 30for (NamespaceDecl? scope = this.scopes; scope != null; scope = scope.Next) 46for (NamespaceDecl? scope = this.scopes; scope != null; scope = scope.Next)
System\Xml\Xsl\XsltOld\InputScopeManager.cs (1)
65for (NamespaceDecl? scope = _scopeStack.Scopes; scope != null; scope = scope.Next)
System\Xml\Xsl\XsltOld\NamespaceDecl.cs (4)
15private NamespaceDecl? _next; 32internal NamespaceDecl? Next 37internal NamespaceDecl(string prefix, string nsUri, string prevDefaultNsUri, NamespaceDecl? next) 45internal void Init(string prefix, string nsUri, string prevDefaultNsUri, NamespaceDecl? next)
System\Xml\Xsl\XsltOld\OutputScope.cs (1)
87for (NamespaceDecl? scope = this.scopes; scope != null; scope = scope.Next)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (1)
102for (NamespaceDecl? scope = elementScope.Scopes; scope != null; scope = scope.Next)