Mercurial > pub > ImplabNet
view Implab/ITaskController.cs @ 226:9428ea36838e v2
fixed JSON parser error when parsing escaped double quote symbol
author | cin |
---|---|
date | Fri, 25 Aug 2017 02:16:35 +0300 |
parents | 706fccb85524 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ITaskController: IProgressHandler, ICancellable { bool IsCancelled { get; } event EventHandler Cancelled; } }