System.Xml.DocumentXPathNodeIterator_ElemChildren.Match C# (CSharp) 메소드

Match() 보호된 메소드

protected Match ( XmlNode node ) : bool
node XmlNode
리턴 bool
        protected override bool Match( XmlNode node ) {
            Debug.Assert( node != null );
            Debug.Assert( node.NodeType == XmlNodeType.Element );
            return Ref.Equal(node.LocalName, localNameAtom) && Ref.Equal(node.NamespaceURI, nsAtom);
        }
    }    
DocumentXPathNodeIterator_ElemChildren