/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Microsoft.CommonLanguageServerProtocol.Framework.UnitTests/Mocks/TestRequestContext.cs
19 строк
807 B
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.UnitTests; internal sealed class TestRequestContext { internal sealed class Factory : AbstractRequestContextFactory<TestRequestContext> { public static readonly Factory Instance = new(); public override async Task<TestRequestContext> CreateRequestContextAsync<TRequestParam>(QueueItem<TestRequestContext> queueItem, IMethodHandler methodHandler, TRequestParam requestParam, CancellationToken cancellationToken) => new TestRequestContext(); } }