Mercurial > pub > ImplabNet
view Implab/Diagnostics/LogEventArgsT.cs @ 112:38d6a4db35d7 v2
fixed Promise.Error handler
author | cin |
---|---|
date | Wed, 19 Nov 2014 13:34:09 +0300 |
parents | 4c0e5ef99986 |
children | 04d4c92d0f28 |
line wrap: on
line source
namespace Implab.Diagnostics { public class LogEventArgs<TEvent> : LogEventArgs { public TEvent Value { get; private set; } public LogEventArgs(TEvent value, int threadId, LogicalOperation operation, int timeOffset) : base(threadId, operation, timeOffset) { Value = value; } } }