Candy.Updater.CandyUpdater.UpdateFilesAsync C# (CSharp) Method

UpdateFilesAsync() protected method

protected UpdateFilesAsync ( FileInfo packageFile, string targetDirectoryPath ) : System.Threading.Tasks.Task
packageFile System.IO.FileInfo
targetDirectoryPath string
return System.Threading.Tasks.Task
        protected virtual async Task UpdateFilesAsync(FileInfo packageFile, string targetDirectoryPath)
        {
            using (var archive = ZipFile.OpenRead(packageFile.FullName))
            {
                await UpdateFilesAsync(archive, targetDirectoryPath).ConfigureAwait(false);
            }
        }
        private static async Task UpdateFilesAsync(ZipArchive archive, string targetDirectoryPath)

Same methods

CandyUpdater::UpdateFilesAsync ( ZipArchive archive, string targetDirectoryPath ) : System.Threading.Tasks.Task