/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Microsoft.CommonLanguageServerProtocol.Framework.Example/ExampleRequestContextFactory.cs
27 строк
1 KB
copilot-swe-agent[bot]
Replace IQueueItem with concrete QueueItem in LSP framework
14 фев 2026, 05:03
14 фев 2026, 05:03
6c8e851
Код
Авторство
О чём код?
// 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; namespace Microsoft.CommonLanguageServerProtocol.Framework.Example; internal sealed class ExampleRequestContextFactory : AbstractRequestContextFactory<ExampleRequestContext> { private readonly ILspServices _lspServices; public ExampleRequestContextFactory(ILspServices lspServices) { _lspServices = lspServices; } public override async Task<ExampleRequestContext> CreateRequestContextAsync<TRequestParam>(QueueItem<ExampleRequestContext> queueItem, IMethodHandler methodHandler, TRequestParam requestParam, CancellationToken cancellationToken) { var logger = _lspServices.GetRequiredService<ILspLogger>(); var requestContext = new ExampleRequestContext(_lspServices, logger); return requestContext; } }