/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol/Handler/WorkDoneProgress/IWorkDoneProgressReporter.cs
17 строк
629 B
David Barbet
Change progress reporting to report done on dispose
14 май 2026, 04:41
14 май 2026, 04:41
9d2782b
Код
Авторство
О чём код?
// 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; using System.Threading; using System.Threading.Tasks; using Roslyn.LanguageServer.Protocol; interface IWorkDoneProgressReporter : IAsyncDisposable, IProgress<WorkDoneProgress> { /// <summary> /// Cancellation token that can be monitored to know when work done progress has been cancelled, /// either by the client or the server. /// </summary> CancellationToken CancellationToken { get; } }