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>