Check for updates periodically
I have a SL 4.0 app running out of browser with full priviliges. How can I check for updates开发者_C百科 (CheckAndDownloadUpdateAsync()) every 10 minutes without affecting UI thread. I've tried using the Timer, but the CheckAndDownloadUpdateCompleted doesn't get executed. I think it is erroring out silently.
Thanks in advace...
Never mind, I have solved it by encapsulating the code within a class. I'm not sure what was breaking it, but this works. Maybe the issue was the Timer thread calling an event of the App class or something else, but now the timer calls the a method of the new class and it all works.
Thanks anyway...
精彩评论