JsonXmlReaderPosition.cs
22 lines
| 434 B
| text/x-csharp
|
CSharpLexer
cin
|
r227 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
using System.Threading.Tasks; | ||||
namespace Implab.Xml { | ||||
cin
|
r229 | enum JsonXmlReaderPosition { | ||
cin
|
r227 | Initial, | ||
Declaration, | ||||
BeginArray, | ||||
BeginObject, | ||||
EndArray, | ||||
EndObject, | ||||
ValueElement, | ||||
ValueContent, | ||||
ValueEndElement, | ||||
Eof, | ||||
Closed, | ||||
Error | ||||
} | ||||
} | ||||