##// END OF EJS Templates
Bound promise to CancellationToken...
Bound promise to CancellationToken Added new states to ExecutionSate enum. Added Safe.Guard() method to handle cleanup of the result of the promise

File last commit:

r94:a43745f81f10 v2
r209:a867536c68fc v2
Show More
TraceEventType.cs
19 lines | 383 B | text/x-csharp | CSharpLexer
cin
initial log capabilities
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
Interactive tracing...
r48 Attach,
Detach,
cin
minor fixes
r94 Enter,
Leave
cin
initial log capabilities
r35 }
}