16 lines
357 B
C#
16 lines
357 B
C#
|
// dnlib: See LICENSE.txt for more info
|
||
|
|
||
|
using System;
|
||
|
|
||
|
namespace dnlib.Threading {
|
||
|
/// <summary>
|
||
|
/// Cancellation token interface
|
||
|
/// </summary>
|
||
|
public interface ICancellationToken {
|
||
|
/// <summary>
|
||
|
/// Throws a <see cref="OperationCanceledException"/> if the operation should be canceled
|
||
|
/// </summary>
|
||
|
void ThrowIfCancellationRequested();
|
||
|
}
|
||
|
}
|