##// END OF EJS Templates
Reimplemented JsonXmlReader, added support for null values: JSON null values are...
Reimplemented JsonXmlReader, added support for null values: JSON null values are mapped to empty nodes with 'xsi:nil' attribute set to 'true'

File last commit:

r94:a43745f81f10 v2
r227:8d5de4eb9c2c v2
Show More
TraceEventType.cs
19 lines | 383 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,
Attach,
Detach,
Enter,
Leave
}
}