示例#1
0
 public void Append(LogRowFormatter row, int timestampField, DateTime timeStamp)
 {
     this.logImpl.Append(row.LogRowFormatterImpl, timestampField, timeStamp);
 }
示例#2
0
 public void Append(LogRowFormatter row, int timestampField)
 {
     this.logImpl.Append(row.LogRowFormatterImpl, timestampField, DateTime.MinValue);
 }
示例#3
0
 public static string Format(object data)
 {
     return(LogRowFormatter.Format(data));
 }
示例#4
0
 public static string FormatCollection(IEnumerable data, bool escapeLineBreaks, out bool needsEscaping)
 {
     return(LogRowFormatter.FormatCollection(data, escapeLineBreaks, out needsEscaping));
 }
示例#5
0
 public static string FormatCollection(IEnumerable data)
 {
     return(LogRowFormatter.FormatCollection(data));
 }
示例#6
0
 public LogRowFormatter(LogRowFormatter copy)
 {
     this.logRowFormatterImpl = new LogRowFormatter(copy.logRowFormatterImpl);
 }