view Implab/Diagnostics/LogEventArgs.cs @ 114:3fbc6eb93eb1 v2

minor changes
author cin
date Sun, 14 Dec 2014 22:39:13 +0100
parents 4c0e5ef99986
children 04d4c92d0f28
line wrap: on
line source

using System;

namespace Implab.Diagnostics {
    public class LogEventArgs : EventArgs {
        public int ThreadId {
            get;
            private set;
        }
        public LogicalOperation Operation {
            get;
            private set;
        }
        public int OperationTimeOffset {
            get;
            private set;
        }
        public LogEventArgs(int threadId, LogicalOperation operation, int timeOffset) {
            ThreadId = threadId;
            Operation = operation;
            OperationTimeOffset = timeOffset;
        }
    }
}