System.Xml.DocumentXPathNodeIterator_ElemChildren.Match C# (CSharp) Méthode

Match() protected méthode

protected Match ( XmlNode node ) : bool
node XmlNode
Résultat 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