Mercurial > pub > ImplabNet
view Implab/Xml/JsonXmlReaderPosition.cs @ 280:f07be402ab02 v3
Added Trace<T>.Debug(...) method for debug messages
Added ContainerBuilde.LoadConfig(Uri) method
author | cin |
---|---|
date | Fri, 25 May 2018 19:15:26 +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 } }