/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/IAppCache.cs
36 строк
1023 B
Michael Jolley
CmdPal: Linq clean-up (All Apps) (#41551)
26 сен 2025, 19:15
Не верифицирован
26 сен 2025, 19:15
3bdb530
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using Microsoft.CmdPal.Ext.Apps.Programs; namespace Microsoft.CmdPal.Ext.Apps; /// <summary> /// Interface for application cache that provides access to Win32 and UWP applications. /// </summary> public interface IAppCache : IDisposable { /// <summary> /// Gets the collection of Win32 programs. /// </summary> IList<Win32Program> Win32s { get; } /// <summary> /// Gets the collection of UWP applications. /// </summary> IList<IUWPApplication> UWPs { get; } /// <summary> /// Determines whether the cache should be reloaded. /// </summary> /// <returns>True if cache should be reloaded, false otherwise.</returns> bool ShouldReload(); /// <summary> /// Resets the reload flag. /// </summary> void ResetReloadFlag(); }