Mercurial > pub > ImplabNet
view Implab/Xml/JsonXmlReaderPosition.cs @ 245:b904e0a3ba72 v3
working on promises
author | cin |
---|---|
date | Fri, 26 Jan 2018 04:13:34 +0300 |
parents | 5f7a3e1d32b9 |
children |
line wrap: on
line source
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 } }