Beispiel #1
0
        public async Task <T> LoadCompressedFileAsync <T>(string fileName) where T : class
        {
            await FileIOHelper.MigrateDataAsync(ApplicationData.Current.LocalFolder, fileName);

            return(await FileIOHelper.LoadCompressedAsync <T>(ApplicationData.Current.LocalFolder, fileName));
        }
Beispiel #2
0
 public Task <T> LoadCompressedFileAsync <T>(string fileName) where T : class
 {
     return(FileIOHelper.LoadCompressedAsync <T>(ApplicationData.Current.LocalFolder, fileName));
 }