Clone() public method

public Clone ( ) : XPathNavigator
return System.Xml.XPath.XPathNavigator
示例#1
0
 internal DocumentXPathNodeIterator_Empty(DocumentXPathNavigator nav) { _nav = nav.Clone(); }
示例#2
0
 internal DocumentXPathNodeIterator_ElemDescendants(DocumentXPathNavigator nav)
 {
     _nav = (DocumentXPathNavigator)(nav.Clone());
     _level = 0;
     _position = 0;
 }
 internal DocumentXPathNodeIterator_ElemDescendants( DocumentXPathNavigator nav ) {
     this.nav      = (DocumentXPathNavigator)(nav.Clone());
     this.level    = 0;
     this.position = 0;
 }