Files
dan_clark@outlook.com 506161e4b9 WIP memory iconstorage
2022-03-24 20:09:10 +00:00

16 lines
493 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Windows.Storage;
namespace TheXamlGuy.TaskbarGroup.Flyout.Foundation
{
public static class IStorageItemExtensions
{
public static async Task<IDictionary<string, object>> RetrievePropertiesAsync(this IStorageItem storageFile, params string[] paramaters)
{
return await (await storageFile.GetBasicPropertiesAsync()).RetrievePropertiesAsync(paramaters);
}
}
}