Mercurial > pub > ImplabNet
annotate Implab/Diagnostics/TraceEventType.cs @ 177:a0ff6a0e9c44 ref20160224
refactoring
author | cin |
---|---|
date | Wed, 23 Mar 2016 01:42:00 +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 } |