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);
}