System.Xml.XPath.XPathNavigator.Clone C# (CSharp) Method

Clone() public abstract method

public abstract Clone ( ) : XPathNavigator
return XPathNavigator
        public abstract XPathNavigator Clone();

Usage Example

Example #1
0
        public override bool ParseXML(XPathNavigator node)
        {
            XPathNavigator child = node.Clone();
            base.ParseXML(child);

            child = node.Clone();
            if(child.MoveToChild("name", String.Empty))
                name = child.Value;

            return true;
        }
All Usage Examples Of System.Xml.XPath.XPathNavigator::Clone