1 instantiation of InputScope
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\InputScopeManager.cs (1)
49this.scopeStack = new InputScope(this.scopeStack);
18 references to InputScope
System.Data.SqlXml (18)
System\Xml\Xsl\XsltOld\Compiler.cs (2)
66private InputScope rootScope; 300InputScope varScope;
System\Xml\Xsl\XsltOld\InputScope.cs (7)
17private InputScope parent; 24internal InputScope Parent { 42internal InputScope(InputScope parent) { 46internal void Init(InputScope parent) { 101for (InputScope inputScope = this; inputScope != null; inputScope = inputScope.Parent) { 113InputScope prevScope = null; 114for (InputScope inputScope = this; inputScope != null; inputScope = inputScope.Parent) {
System\Xml\Xsl\XsltOld\InputScopeManager.cs (8)
16private InputScope scopeStack; 20public InputScopeManager(XPathNavigator navigator, InputScope rootScope) { 25internal InputScope CurrentScope { 29internal InputScope VariableScope { 48internal InputScope PushScope() { 93for (InputScope inputScope = this.scopeStack; inputScope != null; inputScope = inputScope.Parent) { 128for (InputScope inputScope = this.scopeStack; inputScope != null; inputScope = inputScope.Parent) { 146for (InputScope inputScope = this.scopeStack; inputScope != null; inputScope = inputScope.Parent) {
System\Xml\Xsl\XsltOld\NavigatorInput.cs (1)
172internal NavigatorInput(XPathNavigator navigator, string baseUri, InputScope rootScope) {