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