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