System.Xml.DataDocumentXPathNavigator.DataDocumentXPathNavigator C# (CSharp) Méthode

DataDocumentXPathNavigator() private méthode

private DataDocumentXPathNavigator ( DataDocumentXPathNavigator other ) : System.Xml.XPath
other DataDocumentXPathNavigator
Résultat System.Xml.XPath
        private DataDocumentXPathNavigator(DataDocumentXPathNavigator other)
        {
            _curNode = other._curNode.Clone(this);
            _temp = other._temp.Clone(this);
            _doc = other._doc;
        }
        public override XPathNavigator Clone() => new DataDocumentXPathNavigator(this);

Same methods

DataDocumentXPathNavigator::DataDocumentXPathNavigator ( XmlDataDocument doc, XmlNode node ) : System.Xml.XPath