We have a tree, and when user click on any node, it will query data from web service, and displace the result. However, sometimes it take times. So I try to wrap the web service call in a task. I would like cancel the task when it hasn't finished and user click to the other nodes. The following is my sample code. However the cancel task block can't be execute, even the _cancelTokenSource.Cancel() execute. Most of samples provided by MSDN are based on CPU bound, not I/O bound. Can anyone tell me how to cancel a web service all? Thanks in advance
private void OnNodeClicked(int id)
{
if (_cancelTokenSource != null)
_cancelTokenSource.Cancel();
IsRunning = true;
var uiSchedule = System.Threading.Tasks.TaskScheduler.FromCurrentSynchronizationContext();
_cancelTokenSource = new CancellationTokenSource();
var loadDataTask = System.Threading.Tasks.Task.Factory.StartNew<int[]>(() =>
{
// Call web service here
}, _cancelTokenSource.Token);
loadDataTask.ContinueWith((result) =>
{
// Populate data
IsRunning = false;
}, CancellationToken.None, System.Threading.Tasks.TaskContinuationOptions.OnlyOnRanToCompletion, uiSchedule);
loadDataTask.ContinueWith((result) =>
{
// set cancel state here
IsRunning = false;
}, CancellationToken.None, System.Threading.Tasks.TaskContinuationOptions.OnlyOnCanceled, uiSchedule);
}