1 write to elementScopesStack
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (1)
47this.elementScopesStack = new HWStack(STACK_INCREMENT);
14 references to elementScopesStack
System.Data.SqlXml (14)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (14)
30Debug.Assert(this.elementScopesStack.Peek() != null); // We adding rootElementScope to garantee this 31return (OutputScope) this.elementScopesStack.Peek(); 54OutputScope rootElementScope = (OutputScope) this.elementScopesStack.Push(); 57this.elementScopesStack.AddToTop(rootElementScope); 77OutputScope elementScope = (OutputScope) this.elementScopesStack.Push(); 81this.elementScopesStack.AddToTop(elementScope); 89OutputScope elementScope = (OutputScope) this.elementScopesStack.Pop(); 118for (int i = this.elementScopesStack.Length - 1; i >= 0; i --) { 119Debug.Assert(this.elementScopesStack[i] is OutputScope); 120OutputScope elementScope = (OutputScope) this.elementScopesStack[i]; 124thisScope = (i == this.elementScopesStack.Length - 1); 135for (int i = this.elementScopesStack.Length - 1; 0 <= i; i--) { 136Debug.Assert(this.elementScopesStack[i] is OutputScope); 138OutputScope elementScope = (OutputScope) this.elementScopesStack[i];