LogEventArgsT.cs
13 lines
| 384 B
| text/x-csharp
|
CSharpLexer
|
|
r92 | namespace Implab.Diagnostics { | ||
| public class LogEventArgs<TEvent> : LogEventArgs { | ||||
| public TEvent Value { | ||||
| get; | ||||
| private set; | ||||
| } | ||||
|
|
r194 | public LogEventArgs(TEvent value,object channel, int threadId, LogicalOperation operation, int timeOffset) : base(channel, threadId, operation, timeOffset) { | ||
|
|
r92 | Value = value; | ||
| } | ||||
| } | ||||
| } | ||||
