view Implab/Formats/JSON/JsonTokenType.cs @ 187:dd4a3590f9c6 ref20160224

Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation
author cin
date Tue, 19 Apr 2016 17:35:20 +0300
parents e227e78d72e4
children 6fa235c5a760
line wrap: on
line source

namespace Implab.Formats.JSON {
    /// <summary>
    /// Тип токенов, возвращаемых <see cref="JSONScanner"/>.
    /// </summary>
    public enum JsonTokenType : int {
        None = 0,
        /// <summary>
        /// Начало объекта
        /// </summary>
        BeginObject,
        /// <summary>
        /// Конец объекта
        /// </summary>
        EndObject,
        /// <summary>
        /// Начало массива
        /// </summary>
        BeginArray,
        /// <summary>
        /// Конец массива
        /// </summary>
        EndArray,
        /// <summary>
        /// Строка
        /// </summary>
        String,
        /// <summary>
        /// Число
        /// </summary>
        Number,
        /// <summary>
        /// Литерал
        /// </summary>
        Literal,
        /// <summary>
        /// Разделитель имени <c>:</c>
        /// </summary>
        NameSeparator,
        /// <summary>
        /// Разделитель имени <c>,</c>
        /// </summary>
        ValueSeparator
    }
}