diff Implab/Diagnostics/LogEventArgsT.cs @ 192:f1da3afc3521 release v2.1

Слияние с v2
author cin
date Fri, 22 Apr 2016 13:10:34 +0300
parents 04d4c92d0f28
children d45bdf510514
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Implab/Diagnostics/LogEventArgsT.cs	Fri Apr 22 13:10:34 2016 +0300
@@ -0,0 +1,13 @@
+namespace Implab.Diagnostics {
+    public class LogEventArgs<TEvent> : LogEventArgs {
+        public TEvent Value {
+            get;
+            private set;
+        }
+
+        public LogEventArgs(TEvent value,string channelName, int threadId, LogicalOperation operation, int timeOffset) : base(channelName, threadId, operation, timeOffset) {
+            Value = value;
+        }
+    }
+}
+