Bloom.Book.BookStorage.GetImagePathsRelativeToBook C# (CSharp) 메소드

GetImagePathsRelativeToBook() 정적인 개인적인 메소드

Return the paths, relative to the book folder, of all the images referred to in the element.
static private GetImagePathsRelativeToBook ( XmlElement element ) : List
element System.Xml.XmlElement
리턴 List
        internal static List<string> GetImagePathsRelativeToBook(XmlElement element)
        {
            return (from XmlElement img in HtmlDom.SelectChildImgAndBackgroundImageElements(element)
                select HtmlDom.GetImageElementUrl(img).PathOnly.NotEncoded).Distinct().ToList();
        }