##// END OF EJS Templates
Implab.Test moved to xunit...
Implab.Test moved to xunit Complete set of PromiseHelpers (Then, Catch, Finally) Removed obsolete types ICancellable, ICancellationToken

File last commit:

r194:d45bdf510514 v2
r249:d82909310094 v3
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;
}
}
}