TraceEventType.cs
19 lines
| 383 B
| text/x-csharp
|
CSharpLexer
cin
|
r35 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
using System.Threading.Tasks; | ||||
namespace Implab.Diagnostics { | ||||
public enum TraceEventType { | ||||
Information = 1, | ||||
Warning, | ||||
Error, | ||||
OperationStarted, | ||||
OperationCompleted, | ||||
cin
|
r48 | Attach, | ||
Detach, | ||||
cin
|
r94 | Enter, | ||
Leave | ||||
cin
|
r35 | } | ||
} | ||||