/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol/IOnConfigurationChanged.cs
14 строк
511 B
David Wengier
Allow Razor to hook into configuration change notifications
29 апр 2025, 08:11
29 апр 2025, 08:11
5559eec
Код
Авторство
О чём код?
// 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.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.LanguageServer.Handler; namespace Microsoft.CodeAnalysis.LanguageServer; internal interface IOnConfigurationChanged { Task OnConfigurationChangedAsync(RequestContext context, CancellationToken cancellationToken); }