15 lines
273 B
C#
15 lines
273 B
C#
|
|
||
|
using System;
|
||
|
|
||
|
namespace Cysharp.Threading.Tasks
|
||
|
{
|
||
|
public static class ExceptionExtensions
|
||
|
{
|
||
|
public static bool IsOperationCanceledException(this Exception exception)
|
||
|
{
|
||
|
return exception is OperationCanceledException;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|