##// END OF EJS Templates
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler...
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation

File last commit:

r180:c32688129f14 ref20160224
r187:dd4a3590f9c6 ref20160224
Show More
JSONElementContext.cs
11 lines | 198 B | text/x-csharp | CSharpLexer
/ Implab / Formats / JSON / JSONElementContext.cs
cin
DFA refactoring
r165 namespace Implab.Formats.JSON {
cin
JSON moved to Formats namespace...
r163 /// <summary>
/// internal
/// </summary>
cin
DFA refactoring
r165 enum JSONElementContext {
cin
JSON moved to Formats namespace...
r163 None,
Object,
cin
refactoring complete, JSONParser rewritten
r180 Array,
Closed
cin
JSON moved to Formats namespace...
r163 }
}