##// END OF EJS Templates
RunnableComponent.Dispose(bool,Exception) changed to standart Dispose(bool)...
RunnableComponent.Dispose(bool,Exception) changed to standart Dispose(bool) IRunnable is now disposable Code cleanups, suppressed some CodeAnalysis warnings

File last commit:

r194:d45bdf510514 v2
r208:7d07503621fe v2
Show More
LogEventArgsT.cs
13 lines | 384 B | text/x-csharp | CSharpLexer
cin
rewritten tracing
r92 namespace Implab.Diagnostics {
public class LogEventArgs<TEvent> : LogEventArgs {
public TEvent Value {
get;
private set;
}
cin
working on diagnostics
r194 public LogEventArgs(TEvent value,object channel, int threadId, LogicalOperation operation, int timeOffset) : base(channel, threadId, operation, timeOffset) {
cin
rewritten tracing
r92 Value = value;
}
}
}