view Implab/Xml/JsonXmlReaderPosition.cs @ 253:34df34841225 v3 v3.0.1-beta

Implab.Diagnostics drafts
author cin
date Mon, 12 Feb 2018 17:03:37 +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
    }
}