1 2 3 4 5 6 7 8
namespace SharpCifs.Util.Sharpen { internal interface IFuture<T> { bool Cancel (bool mayInterruptIfRunning); T Get (); } }