AppResourceGroupBackgroundTaskReport.EntryPoint 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取后台任务入口点的名称。
public:
property Platform::String ^ EntryPoint { Platform::String ^ get(); };
winrt::hstring EntryPoint();
public string EntryPoint { get; }
var string = appResourceGroupBackgroundTaskReport.entryPoint;
Public ReadOnly Property EntryPoint As String
属性值
应用清单中指定的入口点的名称。
Windows 要求
应用功能 |
appDiagnostics
|
注解
入口点字符串取自清单中的定义。 例如,对于包含以下声明的清单,EntryPoint 字符串将为 "Tasks.BackgroundTaskClass"
:
<Extension Category="windows.backgroundTasks" EntryPoint="Tasks.BackgroundTaskClass">
<BackgroundTasks>
<Task Type="systemEvent" />
<Task Type="pushNotification" />
</BackgroundTasks>
</Extension>
对于 JavaScript 任务,入口点字符串取自后台任务注册中 StartPage 属性的值。 例如,对于包含以下声明的清单,入口点字符串将为 "js\completionGroupBackgroundTask.js"
:
<Extension Category="windows.backgroundTasks" StartPage="js\completionGroupBackgroundTask.js">
<BackgroundTasks>
<Task Type="general" />
</BackgroundTasks>
</Extension>