##// END OF EJS Templates
Added support for 'await' operator to promises
Added support for 'await' operator to promises

File last commit:

r134:04d4c92d0f28 v2
r151:ec91a6dfa5b3 v2
Show More
LogEventArgsT.cs
13 lines | 392 B | text/x-csharp | CSharpLexer
namespace Implab.Diagnostics {
public class LogEventArgs<TEvent> : LogEventArgs {
public TEvent Value {
get;
private set;
}
public LogEventArgs(TEvent value,string channelName, int threadId, LogicalOperation operation, int timeOffset) : base(channelName, threadId, operation, timeOffset) {
Value = value;
}
}
}