Is there a way to cancel async Tasks in the Cloud Save API?
Normally, a Task allows for a param that includes a CancellationToken, which can be used later to cancel Tasks. However, the Tasks in the Cloud Save API do not have this param. Is it done under the hood? Do I need to catch a certain exception?
I am trying to timeout LoadAsync() after 10 seconds by using Task.WhenAny() in a situation where the Task took too long to return.