Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been playing round with the async ctp this morning and have a simple program with a button and a label. Click the button and it starts updating the label, stop the button it stops writing to the labal.. however, i'm not sure how to reset the CancellationTokenSource so i can restart the process. My code is below

public partial class MainWindow : Window
    {
        CancellationTokenSource cts = new CancellationTokenSource();
        public MainWindow()
        {
            InitializeComponent();
            button.Content = "Start";
        }

        async Task DoWork(CancellationToken cancelToken)
        {
            int i = 0;
            while (!cancelToken.IsCancellationRequested)
            {
                label.Content = i++.ToString();
                await TaskEx.Delay(50, cancelToken);
            }
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            if (button.Content == "Start")
            {
                button.Content = "Stop";
                DoWork(cts.Token);
            }
            else
            {
                button.Content = "Start";
                cts.Cancel();
            }
        }
    }
share|improve this question
Is it C# 5.0? It does not compile in .NET 4.0 – Fulproof Feb 25 at 12:50

1 Answer

up vote 10 down vote accepted

You need to recreate the CancellationTokenSource - there is no way to "reset" this once you set it.

This could be as simple as:

   private void Button_Click(object sender, RoutedEventArgs e)
    {
        if (button.Content == "Start")
        {
            button.Content = "Stop";
            cts.Dispose(); // Clean up old token source....
            cts = new CancellationTokenSource(); // "Reset" the cancellation token source...
            DoWork(cts.Token);
        }
        else
        {
            button.Content = "Start";
            cts.Cancel();
        }
    }
share|improve this answer
Perfect, thank you sir. – poco Feb 17 '12 at 17:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.