AppResourceGroupBackgroundTaskReport.EntryPoint Proprietà

Definizione

Ottiene il nome del punto di ingresso dell'attività in background.

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

Valore della proprietà

String

Platform::String

winrt::hstring

Nome del punto di ingresso come specificato nel manifesto dell'app.

Requisiti Windows

Funzionalità dell'app
appDiagnostics

Commenti

La stringa del punto di ingresso viene presa dalla definizione nel manifesto. Ad esempio, la stringa EntryPoint sarà "Tasks.BackgroundTaskClass" per un manifesto contenente la dichiarazione seguente:

<Extension Category="windows.backgroundTasks" EntryPoint="Tasks.BackgroundTaskClass">
    <BackgroundTasks>
        <Task Type="systemEvent" />
        <Task Type="pushNotification" />
    </BackgroundTasks>
</Extension>

Per le attività JavaScript, la stringa del punto di ingresso viene presa dal valore dell'attributo StartPage nella registrazione attività in background. Ad esempio, la stringa del punto di ingresso sarà "js\completionGroupBackgroundTask.js" per un manifesto che contiene la dichiarazione seguente:

<Extension Category="windows.backgroundTasks" StartPage="js\completionGroupBackgroundTask.js">
  <BackgroundTasks>
    <Task Type="general" />
  </BackgroundTasks>
</Extension>

Si applica a