XLog.Formatters.LineFormatter.LineFormatter C# (CSharp) Method

LineFormatter() public method

public LineFormatter ( ICategoryFormatter categoryFormatter = null, bool doAsyncExceptionCleanup = true, LineEnding lineEnding = LineEnding.CRLF ) : XLog.Categories
categoryFormatter ICategoryFormatter
doAsyncExceptionCleanup bool
lineEnding LineEnding
return XLog.Categories
        public LineFormatter(
            ICategoryFormatter categoryFormatter = null, 
            bool doAsyncExceptionCleanup = true,
            LineEnding lineEnding = LineEnding.CRLF)
        {
            _categoryFormatter = categoryFormatter;
            _doAsyncExceptionCleanup = doAsyncExceptionCleanup;
            _lineEnding = lineEnding;
        }