##// END OF EJS Templates
ServiceLocator: added a cleanup callback to the service registration method
ServiceLocator: added a cleanup callback to the service registration method

File last commit:

r48:d9d794b61bb9 interactive logger
r86:b33832ab0262 v2
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
}
}