##// END OF EJS Templates
Promises: SignalXXX methods merged into SignalHandler method....
Promises: SignalXXX methods merged into SignalHandler method. Components: RunnableComponent In progress

File last commit:

r141:0fa293bb1351 v2
r156:97fbbf816844 v2
Show More
JSONElementContext.cs
17 lines | 320 B | text/x-csharp | CSharpLexer
/ Implab / JSON / JSONElementContext.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.JSON {
/// <summary>
/// internal
/// </summary>
public enum JSONElementContext {
None,
Object,
Array,
Closed
}
}