PdfRpt.DataSources.XmlDataSource.XmlDataSource C# (CSharp) Method

XmlDataSource() public method

Converts the XML documents data to an IEnumerable of Pdf Cells Data
public XmlDataSource ( string xml, string descendantsXPathSelect, IList itemsXPathList ) : System.Collections.Generic
xml string XML document's content
descendantsXPathSelect string Descendants XPath
itemsXPathList IList XPath list of the required items
return System.Collections.Generic
        public XmlDataSource(string xml, string descendantsXPathSelect, IList<string> itemsXPathList)
        {
            _xml = xml;
            _xPathList = itemsXPathList;
            _descendantsXPath = descendantsXPathSelect;
        }