/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Storage/Windows/WindowsFile.cs
22 строки
485 B
0x5bfa
Code Quality: Replace raw ABI pointers with ComObject instances for safer disposal (#18684)
16 июл 2026, 18:32
Не верифицирован
16 июл 2026, 18:32
93dfb04
Код
Авторство
О чём код?
// Copyright (c) Files Community // SPDX-License-Identifier: MPL-2.0 using System.IO; using Windows.Win32.UI.Shell; namespace Files.App.Storage { [DebuggerDisplay("{" + nameof(ToString) + "()}")] public class WindowsFile : WindowsStorable, IWindowsFile { public WindowsFile(IShellItem ptr) { ThisPtr = ptr; } public Task<Stream> OpenStreamAsync(FileAccess accessMode, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } } }