TaskCompletionSource(Of TResult).TrySetCanceled Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Attempts to transition the underlying Task(Of TResult) into the Canceled state.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.BooleanTrue if the operation was successful; false if the operation was unsuccessful or the object has already been disposed.
This operation will return false if the Task(Of TResult) is already in one of the three final states: RanToCompletion, Faulted, or Canceled.
This method also returns false if the underlying Task(Of TResult) has already been disposed.
Show: