##// END OF EJS Templates
Container configuration cleanup, RC2
Container configuration cleanup, RC2

File last commit:

r229:5f7a3e1d32b9 v2
r279:8714471e8d78 v3
Show More
JsonXmlReaderPosition.cs
22 lines | 434 B | text/x-csharp | CSharpLexer
/ Implab / Xml / JsonXmlReaderPosition.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Xml {
enum JsonXmlReaderPosition {
Initial,
Declaration,
BeginArray,
BeginObject,
EndArray,
EndObject,
ValueElement,
ValueContent,
ValueEndElement,
Eof,
Closed,
Error
}
}