System.Xml.XPathNodePointer.MoveTo C# (CSharp) Method

MoveTo() private method

private MoveTo ( XmlNode node, DataColumn column, bool fOnValue ) : void
node XmlNode
column System.Data.DataColumn
fOnValue bool
return void
        private void MoveTo(XmlNode node, DataColumn column, bool fOnValue)
        {
            // Should not move outside of this document
            Debug.Assert(node == _doc || node.OwnerDocument == _doc);
            _node = node;
            _column = column;
            _fOnValue = fOnValue;
        }

Same methods

XPathNodePointer::MoveTo ( XPathNodePointer pointer ) : bool
XPathNodePointer::MoveTo ( XmlNode node ) : void