/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.Core.Storage/Contracts/ITrashWatcher.cs
33 строки
1004 B
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
// Copyright (c) 2023 Files Community // Licensed under the MIT License. namespace Files.Core.Storage.Contracts { public interface ITrashWatcher : IWatcher { /// <summary> /// Gets invoked when an item addition is detected by the watcher /// </summary> event EventHandler<SystemIO.FileSystemEventArgs>? ItemAdded; /// <summary> /// Gets invoked when an item removal is detected by the watcher /// </summary> event EventHandler<SystemIO.FileSystemEventArgs>? ItemDeleted; /// <summary> /// Gets invoked when an item changing is detected by the watcher /// </summary> event EventHandler<SystemIO.FileSystemEventArgs>? ItemChanged; /// <summary> /// Gets invoked when an item renaming is detected by the watcher /// </summary> event EventHandler<SystemIO.FileSystemEventArgs>? ItemRenamed; /// <summary> /// Gets invoked when an refresh request is detected by the watcher /// </summary> event EventHandler<SystemIO.FileSystemEventArgs>? RefreshRequested; } }