/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Controls/Omnibar/IOmnibarTextMemberPathProvider.cs
20 строк
769 B
yair100
Code Quality: Updated headers
01 июл 2026, 06:18
01 июл 2026, 06:18
c27305a
Код
Авторство
О чём код?
// Copyright (c) Files Community // SPDX-License-Identifier: MPL-2.0 namespace Files.App.Controls { /// <summary> /// An interface that provides a way to get the text member path of <see cref="OmnibarMode.ItemsSource"/>. /// </summary> /// <remarks> /// An alternative to this interface is to use an <see cref="Microsoft.UI.Xaml.Data.IBindableCustomPropertyImplementation"/> powered by CsWinRT. /// </remarks> public interface IOmnibarTextMemberPathProvider { /// <summary> /// Retrieves the path of the text member as a string. This path can be used to identify the location of the text member. /// </summary> /// <returns>Returns a string representing the path of the text member.</returns> string GetTextMemberPath(string textMemberPath); } }