System.Xml.XPath.XPathDocument.GetRootNode C# (CSharp) Метод

GetRootNode() приватный Метод

Return the root node of the document. This may not be a node of type XPathNodeType.Root if this is a document fragment.
private GetRootNode ( System.Xml.XPath.XPathNode &pageRoot ) : int
pageRoot System.Xml.XPath.XPathNode
Результат int
        internal int GetRootNode(out XPathNode[] pageRoot) {
            pageRoot = this.pageRoot;
            return this.idxRoot;
        }