System.Xml.Tests.SimpleWrapperNavigator.IsSamePosition C# (CSharp) Méthode

IsSamePosition() public méthode

public IsSamePosition ( XPathNavigator other ) : bool
other System.Xml.XPath.XPathNavigator
Résultat bool
        public override bool IsSamePosition(XPathNavigator other)
        {
            if (other is SimpleWrapperNavigator)
            {
                return _innerNavigator.IsSamePosition((other as SimpleWrapperNavigator)._innerNavigator);
            }
            else
            {
                return _innerNavigator.IsSamePosition(other);
            }
        }