// dnlib: See LICENSE.txt for more info
using System;
namespace dnlib.Threading {
///
/// Cancellation token interface
///
public interface ICancellationToken {
///
/// Throws a if the operation should be canceled
///
void ThrowIfCancellationRequested();
}
}