Mercurial > pub > ImplabNet
view Implab/ICancellable.cs @ 237:f2150c16b476 v2
missing files
| author | cin |
|---|---|
| date | Wed, 22 Nov 2017 16:54:58 +0300 |
| parents | 0fa293bb1351 |
| children |
line wrap: on
line source
using System; namespace Implab { public interface ICancellable { void Cancel(); void Cancel(Exception reason); } }
