##// END OF EJS Templates
Added Skip method to JSON parser to skip contents of the current node
Added Skip method to JSON parser to skip contents of the current node

File last commit:

r55:c0bf853aa04f default
r62:62b440d46313 default
Show More
JSONElementType.cs
34 lines | 872 B | text/x-csharp | CSharpLexer
/ Implab / JSON / JSONElementType.cs
cin
Added initial JSON support...
r55 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.JSON {
/// <summary>
/// Тип элемента на котором находится парсер
/// </summary>
public enum JSONElementType {
None,
/// <summary>
/// Начало объекта
/// </summary>
BeginObject,
/// <summary>
/// Конец объекта
/// </summary>
EndObject,
/// <summary>
/// Начало массива
/// </summary>
BeginArray,
/// <summary>
/// Конец массива
/// </summary>
EndArray,
/// <summary>
/// Простое значение
/// </summary>
Value
}
}