Beispiel #1
0
 protected void NotifyProgress(DeviceSyncEngineProgressDelegate progress, string description)
 {
     progress?.Invoke(new DeviceSyncEngineProgress()
     {
         GameListIndex = this.Index,
         GameListsCount = this.Catalog.GameLists.Count,
         Description = description,
     });
 }
Beispiel #2
0
 protected void NotifySyncComplete(DeviceSyncEngineProgressDelegate progress)
 {
     NotifyProgress(progress, "\nSYNC COMPLETE");
 }