ValueTask.FromCanceled Method
Definition
Overloads
FromCanceled(CancellationToken) |
Creates a ValueTask that has completed due to cancellation with the specified cancellation token. |
FromCanceled<TResult>(CancellationToken) |
Creates a ValueTask<TResult> that has completed due to cancellation with the specified cancellation token. |
FromCanceled(CancellationToken)
Creates a ValueTask that has completed due to cancellation with the specified cancellation token.
public:
static System::Threading::Tasks::ValueTask FromCanceled(System::Threading::CancellationToken cancellationToken);
public static System.Threading.Tasks.ValueTask FromCanceled (System.Threading.CancellationToken cancellationToken);
static member FromCanceled : System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask
Public Shared Function FromCanceled (cancellationToken As CancellationToken) As ValueTask
Parameters
- cancellationToken
- CancellationToken
The cancellation token with which to complete the task.
Returns
The canceled task.
Applies to
FromCanceled<TResult>(CancellationToken)
Creates a ValueTask<TResult> that has completed due to cancellation with the specified cancellation token.
public:
generic <typename TResult>
static System::Threading::Tasks::ValueTask<TResult> FromCanceled(System::Threading::CancellationToken cancellationToken);
public static System.Threading.Tasks.ValueTask<TResult>? FromCanceled<TResult> (System.Threading.CancellationToken cancellationToken);
static member FromCanceled : System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<'Result>
Public Shared Function FromCanceled(Of TResult) (cancellationToken As CancellationToken) As ValueTask(Of TResult)
Type Parameters
- TResult
The type of the result of the returned task.
Parameters
- cancellationToken
- CancellationToken
The cancellation token with which to complete the task.
Returns
The canceled task.