1 instantiation of NamespaceDecl
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\DocumentScope.cs (1)
23this.scopes = new NamespaceDecl(prefix, uri, prevDefaultNsUri, this.scopes);
12 references to NamespaceDecl
System.Data.SqlXml (12)
System\Xml\Xsl\XsltOld\DocumentScope.cs (5)
16protected NamespaceDecl scopes; 18internal NamespaceDecl Scopes { 22internal NamespaceDecl AddNamespace(string prefix, string uri, string prevDefaultNsUri) { 30for (NamespaceDecl scope = this.scopes; scope != null; scope = scope.Next) { 43for (NamespaceDecl scope = this.scopes; scope != null; scope = scope.Next) {
System\Xml\Xsl\XsltOld\InputScopeManager.cs (1)
59for (NamespaceDecl scope = this.scopeStack.Scopes; scope != null; scope = scope.Next) {
System\Xml\Xsl\XsltOld\NamespaceDecl.cs (4)
17private NamespaceDecl next; 31internal NamespaceDecl Next { 35internal NamespaceDecl(string prefix, string nsUri, string prevDefaultNsUri, NamespaceDecl next) { 39internal void Init(string prefix, string nsUri, string prevDefaultNsUri, NamespaceDecl next) {
System\Xml\Xsl\XsltOld\OutputScope.cs (1)
74for (NamespaceDecl scope = this.scopes; scope != null; scope = scope.Next) {
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (1)
93for (NamespaceDecl scope = elementScope.Scopes; scope != null; scope = scope.Next) {