System.Xml.XPath.XPathNavigator.Clone C# (CSharp) 메소드

Clone() 공개 추상적인 메소드

public abstract Clone ( ) : XPathNavigator
리턴 XPathNavigator
        public abstract XPathNavigator Clone();

Usage 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