BackgroundTaskRegistration.AllTasks Proprietà

Definizione

Enumera le attività in background registrate di un'applicazione, ad eccezione delle attività in background registrate in un gruppo con Windows.ApplicationModel.Background.BackgroundTaskBuilder.TaskGroup.

public:
 static property IMapView<Platform::Guid, IBackgroundTaskRegistration ^> ^ AllTasks { IMapView<Platform::Guid, IBackgroundTaskRegistration ^> ^ get(); };
static IMapView<winrt::guid, IBackgroundTaskRegistration const&> AllTasks();
public static IReadOnlyDictionary<Guid,IBackgroundTaskRegistration> AllTasks { get; }
var iMapView = BackgroundTaskRegistration.allTasks;
Public Shared ReadOnly Property AllTasks As IReadOnlyDictionary(Of Guid, IBackgroundTaskRegistration)

Valore della proprietà

Visualizzazione in una mappa di attività in background registrate costituita dall'ID attività e da un'interfaccia IBackgroundTaskRegistration .

Esempio

Nell'esempio seguente viene illustrato come usare la proprietà AllTasks della classe BackgroundTaskRegistration per recuperare l'oggetto di registrazione attività in background esistente per l'attività in background dell'app( se l'attività è attualmente registrata).

// The name of the background task for your app.
string name = "ExampleTaskName";

// Get a list of all background tasks. The list is returned as
// a dictionary of IBackgroundTaskRegistration objects.
foreach (var cur in BackgroundTaskRegistration.AllTasks)
{
    if (cur.Value.Name == name)
    {
        // Take some action based on finding the background task.
        //
        // For example, unregister the task: cur.Value.Unregister(true);
        // Or, set a global variable indicating that the task is already registered
    }
}

Si applica a

Vedi anche