annotate Implab/JSON/JSONElementContext.cs @ 156:97fbbf816844
v2
Promises: SignalXXX methods merged into SignalHandler method.
Components: RunnableComponent In progress
author |
cin |
date |
Mon, 15 Feb 2016 04:22:15 +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 }
|