I'm need to cancel an API call that returns a Task, but it doesn't take a CancellationToken as a parameter, and I can't add one.
How can I cancel that Task?
In this particular case, I'm using Xamarin.Forms with the Geocoder object.
IEnumerable<Position> positions = await geo.GetPositionsForAddressAsync(address);
That call can sometimes take a very long time. For some of my use cases, the user can just navigate to another screen, and that result of that task is no longer needed.
I also worry about my app going to sleep and not having this long running task stopped, or of the task completing and having need of code which is no longer valid.
In short... No its not possible to cancel a c# Task that doesn't attempt to observe a CancellationToken, at least not in the context you are referring to. (ending the app for example, would do it)
The link here on Cancellation discusses the various patterns on how to leverage a cancellation token but since you are dealing with a library you don't control, there isn't much you can do.
The best that I have read about doing this is from Stephen Toub on the "Parallel Programming with .NET" blog.
Basically you create your own cancellation 'overload':
And then use that with a try/catch to call your async function:
Really need to read his blog posting...