Mercurial > pub > ImplabNet
view Implab/ITaskController.cs @ 224:1ba2127cfcd8 v2
Слияние с default
author | cin |
---|---|
date | Tue, 22 Aug 2017 12:45:01 +0300 |
parents | 706fccb85524 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ITaskController: IProgressHandler, ICancellable { bool IsCancelled { get; } event EventHandler Cancelled; } }