Exemplo n.º 1
0
        public async void SavePlaylist()
        {
            var storageFile = await WinRTWrappersService.GetNewStorageFile();

            if (storageFile != null)
            {
                await WinRTWrappersService.SaveToFile(storageFile, PlaylistItems);
            }
        }
Exemplo n.º 2
0
        public async Task SavePlaylist()
        {
            var storageFile = await WinRTWrappersService.GetNewStorageFile();

            if (storageFile != null)
            {
                await WinRTWrappersService.SaveToFile(storageFile, PlaylistManagementService.Items);
            }
        }