mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08: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 |