HtmlAgilityPack.HtmlNodeNavigator.Clone C# (CSharp) Метод

Clone() публичный Метод

Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator.
public Clone ( ) : XPathNavigator
Результат System.Xml.XPath.XPathNavigator
        public override XPathNavigator Clone()
        {
            InternalTrace(null);
            return new HtmlNodeNavigator(this);
        }