StatLight.Core.Reporting.Providers.Xml.XmlReport.FormatExceptionInfoElement C# (CSharp) Method

FormatExceptionInfoElement() private static method

private static FormatExceptionInfoElement ( ExceptionInfo exceptionInfo ) : System.Xml.Linq.XElement
exceptionInfo ExceptionInfo
return System.Xml.Linq.XElement
        private static XElement FormatExceptionInfoElement(ExceptionInfo exceptionInfo)
        {
            if (exceptionInfo == null)
                return null;

            return FormatExceptionInfoElement(exceptionInfo, false);
        }

Same methods

XmlReport::FormatExceptionInfoElement ( ExceptionInfo exceptionInfo, bool isInnerException ) : System.Xml.Linq.XElement