view Implab/ICancellable.cs @ 219:cc1baf7c8bd9 v2

fixed trace
author cin
date Thu, 18 May 2017 16:53:14 +0300
parents 0fa293bb1351
children
line wrap: on
line source

using System;

namespace Implab {
    public interface ICancellable {
        void Cancel();
        void Cancel(Exception reason);
    }
}