##// END OF EJS Templates
JsonXmlReader performance tuning...
JsonXmlReader performance tuning JsonScanner now operates strings and doesn't parses number and literals. Added SerializationHelpers to common serialize/deserialize operations

File last commit:

r145:706fccb85524 v2
r229:5f7a3e1d32b9 v2
Show More
ITaskController.cs
11 lines | 220 B | text/x-csharp | CSharpLexer
using System;
namespace Implab {
public interface ITaskController: IProgressHandler, ICancellable {
bool IsCancelled {
get;
}
event EventHandler Cancelled;
}
}