Mercurial > pub > ImplabNet
view Implab/Diagnostics/LogEventArgsT.cs @ 124:a336cb13c6a9 v2
major update, added Drain mathod to AsyncQueue class
author | cin |
---|---|
date | Thu, 15 Jan 2015 02:43:14 +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; } } }