##// END OF EJS Templates
Added Skip method to JSON parser to skip contents of the current node
Added Skip method to JSON parser to skip contents of the current node

File last commit:

r52:edf0bc558596 default
r62:62b440d46313 default
Show More
TraceEvent.cs
34 lines | 953 B | text/x-csharp | CSharpLexer
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;
}
public override string ToString() {
if (EventType == TraceEventType.Information)
return Message;
else
return String.Format("{0}: {1}", EventType, Message);
}
public static TraceEvent Create(TraceEventType type, string format, params object[] args) {
return new TraceEvent(type, format == null ? String.Empty : String.Format(format, args));
}
}
}