/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/Core/Def/Feedback/IVisualStudioFeedbackFileWatcherService.cs
22 строки
593 B
David Wengier
Extract services and abstract base class to allow more things to participate in feedback logging
26 июн 2026, 08:13
26 июн 2026, 08:13
1c2c201
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; namespace Microsoft.VisualStudio.LanguageServices.Feedback; internal interface IVisualStudioFeedbackFileWatcherService { event EventHandler RecordingStarted; event EventHandler RecordingEnded; bool IsWatching { get; } bool IsRecordingForCurrentVisualStudioInstance { get; } int VisualStudioProcessId { get; } string TempDirectory { get; } }