public DelimitedValuesFormatter(Char indentChar, String dateTimeFormatText, String logContext, String delimiter)
 {
     _default = new DefaultFormatter(indentChar, dateTimeFormatText);
     _delayedService = new DelayedFormatterService(dateTimeFormatText);
     this.LogContext = logContext;
     this.Delimiter = delimiter;
 }
示例#2
0
 public DelimitedValuesFormatter(Char indentChar, String dateTimeFormatText, String logContext, String delimiter)
 {
     _default        = new DefaultFormatter(indentChar, dateTimeFormatText);
     _delayedService = new DelayedFormatterService(dateTimeFormatText);
     this.LogContext = logContext;
     this.Delimiter  = delimiter;
 }
示例#3
0
 public SingleLineFormatter(Char indentChar, String dateTimeFormatText)
 {
     _default = new DefaultFormatter(indentChar, dateTimeFormatText);
     _delayedService = new DelayedFormatterService(dateTimeFormatText);
 }
示例#4
0
 public SingleLineFormatter(Char indentChar, String dateTimeFormatText)
 {
     _default        = new DefaultFormatter(indentChar, dateTimeFormatText);
     _delayedService = new DelayedFormatterService(dateTimeFormatText);
 }