##// END OF EJS Templates
fixed typo
fixed typo

File last commit:

r295:28af686e24f7 default
r297:00a2d52813ee v3.0.16 default
Show More
JsonXmlReaderPosition.cs
16 lines | 311 B | text/x-csharp | CSharpLexer
/ Implab / src / Xml / JsonXmlReaderPosition.cs
namespace Implab.Xml {
enum JsonXmlReaderPosition {
Initial,
Declaration,
BeginArray,
BeginObject,
EndArray,
EndObject,
ValueElement,
ValueContent,
ValueEndElement,
Eof,
Closed,
Error
}
}