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