##// END OF EJS Templates
Слияние
Слияние

File last commit:

r229:5f7a3e1d32b9 v2
r232:133ba4444acc merge v2
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
}
}