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

XPathNodePointer() private method

private XPathNodePointer ( DataDocumentXPathNavigator owner, XmlDataDocument doc, XmlNode node, DataColumn c, bool bOnValue, XmlBoundElement parentOfNS ) : System.Data
owner DataDocumentXPathNavigator
doc XmlDataDocument
node XmlNode
c System.Data.DataColumn
bOnValue bool
parentOfNS XmlBoundElement
return System.Data
        private XPathNodePointer(DataDocumentXPathNavigator owner, XmlDataDocument doc, XmlNode node, DataColumn c, bool bOnValue, XmlBoundElement parentOfNS)
        {
            Debug.Assert(owner != null);
            _owner = new WeakReference(owner);
            _doc = doc;
            _node = node;
            _column = c;
            _fOnValue = bOnValue;
            _parentOfNS = parentOfNS;

            // Add this pointer to the document so it will be updated each time region changes it's foliation state.
            _doc.AddPointer(this);
            _bNeedFoliate = false;
            AssertValid();
        }

Same methods

XPathNodePointer::XPathNodePointer ( ) : System.Data
XPathNodePointer::XPathNodePointer ( DataDocumentXPathNavigator owner, XPathNodePointer pointer ) : System.Data
XPathNodePointer::XPathNodePointer ( DataDocumentXPathNavigator owner, XmlDataDocument doc, XmlNode node ) : System.Data