2 instantiations of OutputScope
System.Private.Xml (2)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (2)
60rootElementScope = new OutputScope(); 88elementScope = new OutputScope();
19 references to OutputScope
System.Private.Xml (19)
System\Xml\Xsl\XsltOld\OutputScopeManager.cs (15)
26internal OutputScope CurrentElementScope 31return (OutputScope)_elementScopesStack.Peek()!; 57OutputScope rootElementScope = (OutputScope)_elementScopesStack.Push(); 83OutputScope parentScope = CurrentElementScope; 84OutputScope elementScope = (OutputScope)_elementScopesStack.Push(); 98OutputScope? elementScope = (OutputScope?)_elementScopesStack.Pop(); 135Debug.Assert(_elementScopesStack[i] is OutputScope); 136OutputScope elementScope = (OutputScope)_elementScopesStack[i]; 155Debug.Assert(_elementScopesStack[i] is OutputScope); 157OutputScope elementScope = (OutputScope)_elementScopesStack[i];
System\Xml\Xsl\XsltOld\RecordBuilder.cs (3)
299OutputScope elementScope = _scopeManager.CurrentElementScope; 496OutputScope scope = _scopeManager.CurrentElementScope; 554OutputScope elementScope = _scopeManager.CurrentElementScope;
System\Xml\Xsl\XsltOld\SequentialOutput.cs (1)
186OutputScope scope = record.Manager.CurrentElementScope;