Mercurial > pub > ImplabNet
view Implab/Diagnostics/LogEventArgsT.cs @ 156:97fbbf816844 v2
Promises: SignalXXX methods merged into SignalHandler method.
Components: RunnableComponent In progress
author | cin |
---|---|
date | Mon, 15 Feb 2016 04:22:15 +0300 |
parents | 04d4c92d0f28 |
children | d45bdf510514 |
line wrap: on
line source
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; } } }