Mercurial > pub > ImplabNet
annotate Implab/JSON/JSONElementContext.cs @ 150:3258399cba83 v2
JSONWriter improvements
author | cin |
---|---|
date | Sat, 12 Dec 2015 22:12:44 +0300 |
parents | 0fa293bb1351 |
children |
rev | line source |
---|---|
55 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | |
7 namespace Implab.JSON { | |
8 /// <summary> | |
9 /// internal | |
10 /// </summary> | |
11 public enum JSONElementContext { | |
12 None, | |
13 Object, | |
141 | 14 Array, |
15 Closed | |
55 | 16 } |
17 } |