##// END OF EJS Templates
JsonReader optimizations
JsonReader optimizations

File last commit:

r194:d45bdf510514 v2
r236:302ca905c19e v2
Show More
LogEventArgs.cs
29 lines | 716 B | text/x-csharp | CSharpLexer
cin
rewritten tracing
r92 using System;
namespace Implab.Diagnostics {
public class LogEventArgs : EventArgs {
cin
working on diagnostics
r194 public object Channel {
cin
Improved logging
r134 get;
private set;
}
cin
rewritten tracing
r92 public int ThreadId {
get;
private set;
}
public LogicalOperation Operation {
get;
private set;
}
public int OperationTimeOffset {
get;
private set;
}
cin
working on diagnostics
r194 public LogEventArgs(object channel, int threadId, LogicalOperation operation, int timeOffset) {
Channel = channel;
cin
rewritten tracing
r92 ThreadId = threadId;
Operation = operation;
OperationTimeOffset = timeOffset;
}
}
}