TraceEventType.cs
16 lines
| 336 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, | ||||
Transfer | ||||
} | ||||
} | ||||