In my app I am creating both a PeriodicTask and a ResourceIntensiveTask, both of which have different descriptions.

Under settings, applications, background tasks I only see the description of the PeriodicTask. Is this normal, or does it mean I've messed something up?

Thanks, Damian

link|improve this question

feedback

1 Answer

Each app can only have one background task, but you can check which type of task would like to be run by the system by checking the ScheduleTask object from the OnInvoke method. See http://msdn.microsoft.com/en-us/library/hh202941(v=VS.92).aspx.

Edit: The description is only mandatory for the periodic task which get's show as the agent description. For the resource intensive task you'll need to provide a description.

link|improve this answer
That's when they are invoked. Even though you have a single agent you register it as both a periodic and resource intensive task... and when you register, you provide a description. It looks like it only picks up one description. – Damian Sep 17 '11 at 1:58
Yep. I'll edited my post to clearify this. – Ralf Ehlert Dec 23 '11 at 12:01
feedback

Your Answer

 
or
required, but never shown

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