2 instantiations of OutputScope
System.Data.SqlXml (2)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (2)
56rootElementScope = new OutputScope(); 80elementScope = new OutputScope();
19 references to OutputScope
System.Data.SqlXml (19)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (15)
28internal OutputScope CurrentElementScope { 31return (OutputScope) this.elementScopesStack.Peek(); 54OutputScope rootElementScope = (OutputScope) this.elementScopesStack.Push(); 76OutputScope parentScope = CurrentElementScope; 77OutputScope elementScope = (OutputScope) this.elementScopesStack.Push(); 89OutputScope elementScope = (OutputScope) this.elementScopesStack.Pop(); 119Debug.Assert(this.elementScopesStack[i] is OutputScope); 120OutputScope elementScope = (OutputScope) this.elementScopesStack[i]; 136Debug.Assert(this.elementScopesStack[i] is OutputScope); 138OutputScope elementScope = (OutputScope) this.elementScopesStack[i];
System\Xml\Xsl\XsltOld\RecordBuilder.cs (3)
270OutputScope elementScope = this.scopeManager.CurrentElementScope; 434OutputScope scope = this.scopeManager.CurrentElementScope; 479OutputScope elementScope = this.scopeManager.CurrentElementScope;
System\Xml\Xsl\XsltOld\SequentialOutput.cs (1)
176OutputScope scope = record.Manager.CurrentElementScope;