/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Contracts/IWindowsIniService.cs
24 строки
843 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.Data.Contracts { /// <summary> /// Provides service to retrieve value from an INI file. /// </summary> public interface IWindowsIniService { /// <summary> /// Gets parsed data of INI file of a folder with each section. /// </summary> /// <remarks> /// While there's Win32API GetPrivateProfileString, this API can only used for single key. /// <br/> /// For more information about INI format, visit <a href="https://en.wikipedia.org/wiki/INI_file"/>. /// </remarks> /// <param name="filePath">The INI file to look up.</param> /// <param name="dataItem">The data class to hold the INI data.</param> /// <returns>Returns true if succeeded; otherwise, false.</returns> List<IniSectionDataItem> GetData(string filePath); } }