상속: System.Xml.XPath.XPathNavigator
예제 #1
0
        public override XPathNavigator Clone()
        {
            var clone = new ContentNavigator(/*Context*/);

            clone._currentElement = this._currentElement;
            clone._attrNames      = this._attrNames;
            clone._attrIndex      = this._attrIndex;
            return(clone);
        }
예제 #2
0
 public override XPathNavigator Clone()
 {
     var clone = new ContentNavigator(/*Context*/);
     clone._currentElement = this._currentElement;
     clone._attrNames = this._attrNames;
     clone._attrIndex = this._attrIndex;
     return clone;
 }