System.Xml.DocumentXPathNodeIterator_AllElemChildren.Match C# (CSharp) Method

Match() protected method

protected Match ( XmlNode node ) : bool
node XmlNode
return bool
        protected override bool Match( XmlNode node ) {
            Debug.Assert( node != null );
            return ( node.NodeType == XmlNodeType.Element );
        }
    }
DocumentXPathNodeIterator_AllElemChildren