Mercurial > pub > ImplabNet
view Implab/Diagnostics/LogEventArgsT.cs @ 134:04d4c92d0f28 v2
Improved logging
author | cin |
---|---|
date | Wed, 11 Feb 2015 02:12:15 +0300 |
parents | 4c0e5ef99986 |
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; } } }