##// END OF EJS Templates
ServiceLocator: small refactoring, GetService method is made virtual
ServiceLocator: small refactoring, GetService method is made virtual

File last commit:

r48:d9d794b61bb9 interactive logger
r68:9dd6a896a385 default
Show More
TraceEventType.cs
19 lines | 384 B | text/x-csharp | CSharpLexer
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,
Fork,
Attach,
Detach,
Created
}
}