Mercurial > pub > ImplabNet
view Implab/ITaskController.cs @ 220:42814145d472 v2
.csproj changes
author | cin |
---|---|
date | Tue, 20 Jun 2017 19:45:52 +0300 |
parents | 706fccb85524 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ITaskController: IProgressHandler, ICancellable { bool IsCancelled { get; } event EventHandler Cancelled; } }