System.Xml.Xsl.Runtime.XmlNavAttrFilter.IsFiltered C# (CSharp) Method

IsFiltered() public method

Return true if the navigator is positioned on an attribute.
public IsFiltered ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
return bool
        public override bool IsFiltered(XPathNavigator navigator) {
            return navigator.NodeType == XPathNodeType.Attribute;
        }
    }