92
|
1 using System;
|
|
2
|
|
3 namespace Implab.Diagnostics {
|
|
4 public class LogEventArgs : EventArgs {
|
194
|
5 public object Channel {
|
134
|
6 get;
|
|
7 private set;
|
|
8 }
|
92
|
9 public int ThreadId {
|
|
10 get;
|
|
11 private set;
|
|
12 }
|
|
13 public LogicalOperation Operation {
|
|
14 get;
|
|
15 private set;
|
|
16 }
|
|
17 public int OperationTimeOffset {
|
|
18 get;
|
|
19 private set;
|
|
20 }
|
194
|
21 public LogEventArgs(object channel, int threadId, LogicalOperation operation, int timeOffset) {
|
|
22 Channel = channel;
|
92
|
23 ThreadId = threadId;
|
|
24 Operation = operation;
|
|
25 OperationTimeOffset = timeOffset;
|
|
26 }
|
|
27 }
|
|
28 }
|
|
29
|