##// END OF EJS Templates
addded ServiceHost tests, updated project targets
addded ServiceHost tests, updated project targets

File last commit:

r295:28af686e24f7 default
r299:d54174bbd6c4 tip default
Show More
JsonXmlReaderPosition.cs
16 lines | 311 B | text/x-csharp | CSharpLexer
/ Implab / src / Xml / JsonXmlReaderPosition.cs
cin
Fixed promise rejection when there is not specified error handler in the reaction....
r295 namespace Implab.Xml {
cin
Added tests for Implab.ServiceHost.Unity configuration loader.
r289 enum JsonXmlReaderPosition {
Initial,
Declaration,
BeginArray,
BeginObject,
EndArray,
EndObject,
ValueElement,
ValueContent,
ValueEndElement,
Eof,
Closed,
Error
}
}