System.Xml.Xsl.Runtime.RtfNavigator.IsSamePosition C# (CSharp) Method

IsSamePosition() public method

Returns true if this navigator is positioned to the same node as the "other" navigator. Returns false if not, or if the "other" navigator is not the same type as this navigator.
public IsSamePosition ( XPathNavigator other ) : bool
other System.Xml.XPath.XPathNavigator
return bool
        public override bool IsSamePosition(XPathNavigator other) {
            throw new NotSupportedException();
        }
    }