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