System.Xml.DocumentXPathNavigator.Clone C# (CSharp) Méthode

Clone() public méthode

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

Usage Example

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