Ejemplo n.º 1
0
        private void SkipJobButton_Click(object sender, RoutedEventArgs e)
        {
            // remove the job from the extension's KVS
            IShareJob currentJob = ShareJobQueue.CurrentJob;

            currentJob?.Cancel();

            // continue on with the queue
            ShareJobQueue.RunAllJobs();
        }