Mercurial > pub > ImplabNet
annotate Implab/Diagnostics/TraceEventType.cs @ 136:e9e7940c7d98 v2
shared locks + tests
author | cin |
---|---|
date | Mon, 16 Feb 2015 01:14:09 +0300 |
parents | a43745f81f10 |
children |
rev | line source |
---|---|
35 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | |
7 namespace Implab.Diagnostics { | |
8 public enum TraceEventType { | |
9 Information = 1, | |
10 Warning, | |
11 Error, | |
12 OperationStarted, | |
13 OperationCompleted, | |
48 | 14 Attach, |
15 Detach, | |
94 | 16 Enter, |
17 Leave | |
35 | 18 } |
19 } |