annotate Implab/JSON/JSONElementContext.cs @ 124:a336cb13c6a9
v2
major update, added Drain mathod to AsyncQueue class
author |
cin |
date |
Thu, 15 Jan 2015 02:43:14 +0300 |
parents |
c0bf853aa04f |
children |
0fa293bb1351 |
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,
|
|
14 Array
|
|
15 }
|
|
16 }
|