DCSIMG
Debugging Windows Store app Background Tasks - Gil Fink's Blog

Gil Fink's Blog

Fink about IT

News

Microsoft MVP

My Facebook Profile My Twitter Profile My Linkedin Profile

Locations of visitors to this page

Creative Commons License

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.
© Copyright 2013 Gil Fink

Hebrew Articles

Index Pages

My OSS Projects

English Articles

Debugging Windows Store app Background Tasks

Debugging Windows Store app Background Tasks

Debugging Windows Store app Background TasksWindows Store apps can run operations in the background using background tasks. Background tasks are triggered using a background triggers like time or system maintenance. That raises a question which is how we can debug background tasks.

Visual Studio 2012 to the Rescue

Visual Studio 2012 can help you trigger a background task manually. First you need to add a breakpoint to the background task code that you want to check. After you set your breakpoint, you can trigger the background task using the Suspend drop down menu (part of the Debug Location toolbar). The Suspend drop down menu shows all the background tasks associated with the running app. In the next figure you can see the MyBackgroundTask task available in the suspend drop down menu:

Background Task in the suspend menu

Pressing the background task name will manually trigger the task.

Manually triggered Background Task

Pay attention that if the background task isn’t registered nothing will happen and you won’t be able to debug it. 

That is it and now you can debug your code.

Summary

Visual Studio 2012 includes a feature that enables background task debugging. Knowing that can help you avoid waiting to trigger events to happen.

Comments

Debugging Windows Store app Background Tasks | Windows8 Programming | Scoop.it said:

Pingback from  Debugging Windows Store app Background Tasks | Windows8 Programming | Scoop.it

# January 4, 2013 4:57 PM

Debugging Windows Store app Background Tasks « Cosa importa se…. said:

Pingback from  Debugging Windows Store app Background Tasks « Cosa importa se….

# January 4, 2013 4:59 PM