internal void PushNamespaceScope()
{
_scopeManager.PushScope();
NavigatorInput input = Input;
if (input.MoveToFirstNamespace())
{
do
{
_scopeManager.PushNamespace(input.LocalName, input.Value);
}while (input.MoveToNextNamespace());
input.ToParent();
}
}