comparison Implab/Diagnostics/LogEventArgs.cs @ 192:f1da3afc3521 release v2.1

Слияние с v2
author cin
date Fri, 22 Apr 2016 13:10:34 +0300
parents 04d4c92d0f28
children d45bdf510514
comparison
equal deleted inserted replaced
71:1714fd8678ef 192:f1da3afc3521
1 using System;
2
3 namespace Implab.Diagnostics {
4 public class LogEventArgs : EventArgs {
5 public string ChannelName {
6 get;
7 private set;
8 }
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 }
21 public LogEventArgs(string channelName, int threadId, LogicalOperation operation, int timeOffset) {
22 ChannelName = channelName;
23 ThreadId = threadId;
24 Operation = operation;
25 OperationTimeOffset = timeOffset;
26 }
27 }
28 }
29