System.Xml.Xsl.XsltOld.InputScopeManager.IsExcludedNamespace C# (CSharp) Method

IsExcludedNamespace() private method

private IsExcludedNamespace ( String nspace ) : bool
nspace String
return bool
        internal bool IsExcludedNamespace(String nspace) {
            Debug.Assert(this.scopeStack != null, "PushScope wasn't called");
            for (InputScope inputScope = this.scopeStack; inputScope != null; inputScope = inputScope.Parent) {
                if (inputScope.IsExcludedNamespace( nspace )) {
                    return true;
                }
            }
            return false;
        }
    }