view Implab/Formats/JSON/JSONElementContext.cs @ 198:b305c678923a

fixed error handling for chained actions
author koff
date Mon, 10 Oct 2016 03:14:00 +0300
parents c32688129f14
children
line wrap: on
line source

namespace Implab.Formats.JSON {
    /// <summary>
    /// internal
    /// </summary>
    enum JSONElementContext {
        None,
        Object,
        Array,
        Closed
    }
}