共用方式為


AppResourceGroupBackgroundTaskReport.EntryPoint 屬性

定義

取得背景工作進入點的名稱。

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

屬性值

String

Platform::String

winrt::hstring

應用程式資訊清單中指定的進入點名稱。

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>

適用於