iOSHelpers.BackgroundDownload.RepairFromBackground C# (CSharp) Method

RepairFromBackground() public static method

public static RepairFromBackground ( string sessionIdentifier, System.Action action ) : void
sessionIdentifier string
action System.Action
return void
		public static async void RepairFromBackground(string sessionIdentifier,Action action)
		{
			//REset the files so they load from the disc if it was restored from a group session.
			BackgroundDownloadManager.Reload ();
			if (!backgroundSessions.ContainsKey (sessionIdentifier)) {
				backgroundSessions [sessionIdentifier] = InitBackgroundSession (sessionIdentifier);
				backgroundSessionCompletion [sessionIdentifier] = action;
			}
		}
		static void CompletBackgroundSession(string identifier)