Mercurial > pub > ImplabNet
comparison Implab/Diagnostics/LogEventArgsT.cs @ 92:4c0e5ef99986 v2
rewritten tracing
author | cin |
---|---|
date | Wed, 22 Oct 2014 18:37:56 +0400 |
parents | |
children | 04d4c92d0f28 |
comparison
equal
deleted
inserted
replaced
91:cdaaf4792c22 | 92:4c0e5ef99986 |
---|---|
1 namespace Implab.Diagnostics { | |
2 public class LogEventArgs<TEvent> : LogEventArgs { | |
3 public TEvent Value { | |
4 get; | |
5 private set; | |
6 } | |
7 | |
8 public LogEventArgs(TEvent value, int threadId, LogicalOperation operation, int timeOffset) : base(threadId, operation, timeOffset) { | |
9 Value = value; | |
10 } | |
11 } | |
12 } | |
13 |