mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
12 lines
344 B
C#
12 lines
344 B
C#
#if NEED_CANCELLATIONTOKEN_SHIM
|
|
namespace System.Threading
|
|
{
|
|
internal static class CancellationTokenShim
|
|
{
|
|
public static CancellationTokenRegistration UnsafeRegister(this CancellationToken cancellationToken, Action<object?> callback, object? state)
|
|
=> cancellationToken.Register(callback, state);
|
|
}
|
|
}
|
|
|
|
|
|
#endif |