Esempio n. 1
0
        // --------------------------------------------------------------------------------------------------------------------------
        private static XDocument GetXMLInner(ExceptionDetail detail)
        {
            XElement  xml = new XElement("ExceptionReport", new XAttribute("version", "2"), detail.ToXMLInner());
            XDocument res = new XDocument(new XDeclaration("1.0", "utf-8", "yes"), xml);

            return(res);
        }