Bloom.Book.HtmlDom.IsImgOrSomethingWithBackgroundImage C# (CSharp) Method

IsImgOrSomethingWithBackgroundImage() public static method

public static IsImgOrSomethingWithBackgroundImage ( XmlElement element ) : bool
element System.Xml.XmlElement
return bool
        public static bool IsImgOrSomethingWithBackgroundImage(XmlElement element)
        {
            return element.SelectNodes("self::img | self::*[contains(@style,'background-image')]").Count == 1;
        }