我正在尝试在UWP应用程序中运行后台服务。我首先检查应用程序是否具有后台权限。如果是,那么我正在注册运行服务。
此代码工作正常,直到我将Visual Studio与Windows 10 SDK一起更新为Creators Update版本。现在我无法弄清楚此更新是否会改变注册后台服务的内容。
using System;
using Windows.ApplicationModel.Background;
using BackgroundService;
using SampleApp.Config;
namespace SampleApp.Background
{
class BackgroundClass
{
LocalConfig LC = new LocalConfig();
public async void RequestBackgroundAccess()
{
var result = await BackgroundExecutionManager.RequestAccessAsync();
switch (result)
{
case BackgroundAccessStatus.AllowedMayUseActiveRealTimeConnectivity:
break;
case BackgroundAccessStatus.AllowedWithAlwaysOnRealTimeConnectivity:
break;
case BackgroundAccessStatus.Denied:
break;
case BackgroundAccessStatus.Unspecified:
break;
}
}
public async void RegisterBackgroundSync()
{
var trigger = new ApplicationTrigger();
var condition = new SystemCondition(SystemConditionType.InternetAvailable);
if (!LC.BackgroundSyncStatusGET())
{
var task = new BackgroundTaskBuilder
{
Name = nameof(BackgroundSync),
CancelOnConditionLoss = true,
TaskEntryPoint = typeof(BackgroundSync).ToString(),
};
task.SetTrigger(trigger);
task.AddCondition(condition);
task.Register();
LC.BackgroundSyncStatusSET(true);
}
await trigger.RequestAsync(); //EXCEPTION HAPPENS AT THIS LINE
}
public void RegisterBackgroundService(uint time)
{
var taskName = "BackgroundService";
foreach (var unregisterTask in BackgroundTaskRegistration.AllTasks)
{
if (unregisterTask.Value.Name == taskName)
{
unregisterTask.Value.Unregister(true);
}
}
if(time != 0)
{
var trigger = new TimeTrigger(time, false);
var condition = new SystemCondition(SystemConditionType.InternetAvailable);
var task = new BackgroundTaskBuilder
{
Name = nameof(BackgroundService),
CancelOnConditionLoss = true,
TaskEntryPoint = typeof(BackgroundService).ToString(),
};
task.SetTrigger(trigger);
task.AddCondition(condition);
task.Register();
}
}
}
}
现在请求我检查后台服务是否已注册,以确保重新注册的问题。我得到了以下异常
发生System.Runtime.InteropServices.COMException
的HResult = 0x80004005的
消息=错误HRESULT E_FAIL已从调用COM组件返回。
源=视窗 堆栈跟踪:
在Windows.ApplicationModel.Background.ApplicationTrigger.RequestAsync()
在SampleApp.Background.BackgroundClass.d__2.MoveNext()
请帮助
答案 0 :(得分:1)
出现同样的问题,在我的Windows 10隐私设置中。
系统设置=>隐私设置
在左侧菜单中选择Background apps
。
检查以确保您的应用尚未被阻止运行后台任务。