System.Xml.DocumentXPathNavigator.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : XPathNavigator
return System.Xml.XPath.XPathNavigator
        public override XPathNavigator Clone() {
            return new DocumentXPathNavigator(this);
        }

Usage Example

示例#1
0
 internal DocumentXPathNodeIterator_Empty(DocumentXPathNavigator nav) { _nav = nav.Clone(); }
All Usage Examples Of System.Xml.DocumentXPathNavigator::Clone