2017-04-01 10 views

答えて

5

これはあなたが探しているものですか?

var tasks = BackgroundTaskRegistration.AllTasks; 
      foreach(var task in tasks) 
      { 
       // You can check here for the name 
       string name = task.Value.Name; 

       task.Value.Unregister(true); 
      } 
+0

ありがとうございます! :) – NPadrutt

関連する問題