
Some checks are pending
Sync Github To Image / sync-gitlink (push) Waiting to run
Sync Github To Image / sync-gitlab (push) Waiting to run
Sync Github To Image / sync-gitee (push) Waiting to run
Sync Github To Image / sync-atomgit (push) Waiting to run
Sync Github To Image / sync-gitcode (push) Waiting to run
Sync Github To Image / sync-framagit (push) Waiting to run
15 lines
276 B
C#
15 lines
276 B
C#
|
|
using System;
|
|
|
|
namespace Cysharp.Threading.Tasks
|
|
{
|
|
public static class ExceptionExtensions
|
|
{
|
|
public static bool IsOperationCanceledException(this Exception exception)
|
|
{
|
|
return exception is OperationCanceledException;
|
|
}
|
|
}
|
|
}
|
|
|