comparison Implab/Diagnostics/LogEventArgsT.cs @ 194:d45bdf510514 v2

working on diagnostics
author cin
date Mon, 25 Apr 2016 15:18:56 +0300
parents 04d4c92d0f28
children
comparison
equal deleted inserted replaced
191:cc19dc78edb7 194:d45bdf510514
3 public TEvent Value { 3 public TEvent Value {
4 get; 4 get;
5 private set; 5 private set;
6 } 6 }
7 7
8 public LogEventArgs(TEvent value,string channelName, int threadId, LogicalOperation operation, int timeOffset) : base(channelName, threadId, operation, timeOffset) { 8 public LogEventArgs(TEvent value,object channel, int threadId, LogicalOperation operation, int timeOffset) : base(channel, threadId, operation, timeOffset) {
9 Value = value; 9 Value = value;
10 } 10 }
11 } 11 }
12 } 12 }
13 13