##// END OF EJS Templates
Added initial JSON support...
Added initial JSON support +JSONParser +JSONWriter

File last commit:

r52:edf0bc558596 default
r55:c0bf853aa04f default
Show More
TraceEvent.cs
31 lines | 840 B | text/x-csharp | CSharpLexer
cin
improved log concept
r36 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab.Diagnostics {
public class TraceEvent {
public string Message {
get;
private set;
}
public TraceEventType EventType {
get;
private set;
}
public TraceEvent(TraceEventType type, string message) {
EventType = type;
Message = message;
}
cin
improved tracing...
r40 public override string ToString() {
return String.Format("{0}: {1}", EventType, Message);
}
cin
improved log concept
r36 public static TraceEvent Create(TraceEventType type, string format, params object[] args) {
cin
improved tracing, TextListenerBase can be bound to logical operation scope.
r43 return new TraceEvent(type, format == null ? String.Empty : String.Format(format, args));
cin
improved log concept
r36 }
}
}