/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol/Handler/Extensions/DispatchWorkspaceExtensionMessageParams.cs
16 строк
793 B
Cyrus Najmabadi
Remove unused usings
18 июн 2025, 22:17
18 июн 2025, 22:17
481c36c
Код
Авторство
О чём код?
// 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.Text.Json.Serialization; namespace Microsoft.CodeAnalysis.LanguageServer.Handler.Extensions; /// <summary> /// Parameters for the workspace/_vs_dispatchExtensionMessage request. /// </summary> /// <param name="MessageName">Name of the extension message to be invoked.</param> /// <param name="Message">Json message to be passed to an extension message handler.</param> internal readonly record struct DispatchWorkspaceExtensionMessageParams( [property: JsonPropertyName("messageName")] string MessageName, [property: JsonPropertyName("message")] string Message);