2015-08-31 71 views
0

我的應用在具有Windows 8.1 Pro的平板電腦上運行。當我打開我的電腦時執行後臺任務 - Windows應用商店

我鎖屏界面訪問調用此:

await BackgroundExecutionManager.RequestAccessAsync(); 

一時間觸發運行這些條件我的後臺任務(互聯網和UserPresent):

  // adding condition 
     SystemCondition internetCondition = new SystemCondition(SystemConditionType.InternetAvailable); 
     SystemCondition userPresentCondition = new SystemCondition(SystemConditionType.UserPresent); 

     builder.AddCondition(internetCondition); 
     builder.AddCondition(userPresentCondition); 
     BackgroundTaskRegistration taskRegistration = builder.Register(); 

它工作正常,但是當我關閉我的設備,它不會重新啓動。

我應該添加哪種條件(如果可能的話)?在msdn

回答

0

以供將來使用

同樣的問題,我固定它增加另一個後臺任務與系統觸發和會話狀態。

相關問題