Hue Preserving Color Blending
IBaseOperation.cs
1 using System;
2 
4 {
5  internal interface IBaseOperation
6  {
7  event Action<Error> OnOperationError;
8  event Action OnOperationFinalized;
9 
10  bool IsCompleted { get; }
11 
12  void Cancel();
13  }
14 }