iTextSharp.text.xml.XmlToTxt.Parse C# (CSharp) Method

Parse() public static method

public static Parse ( Stream isp ) : String
isp Stream
return String
        public static String Parse(Stream isp) {
            XmlToTxt handler = new XmlToTxt();
            SimpleXMLParser.Parse(handler, null, new StreamReader(isp), true);
            return handler.ToString();
        }