/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/Core/Def/SemanticSearch/ISemanticSearchToolWindowController.cs
13 строк
489 B
Tomáš Matoušek
Implement support for Semantic Search agent and tool (#77784)
27 мар 2025, 21:23
Не верифицирован
27 мар 2025, 21:23
893f2df
Код
Авторство
О чём код?
// 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.CodeAnalysis.SemanticSearch; internal interface ISemanticSearchToolWindowController { Task UpdateQueryAsync(string query, bool activateWindow, bool executeQuery, CancellationToken cancellationToken); }