The current method receives a cancellation token that is not passed to the invoked method, although the callee or one of its overloads accept such a token. Cancellation tokens are meaningless if not used accordingly.
Pass the received cancellation token to the invoked method. If the invoked method must not be canceled (e.g., for logging a failure), pass CancellationToken.None
instead to explicitly state the intention.