|
// 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.
namespace Roslyn.LanguageServer.Protocol
{
using System.Text.Json.Serialization;
/// <summary>
/// Class representing the registration options for code actions support.
/// <para>
/// See the <see href="https://microsoft.github.io/language-server-protocol/specifications/specification-current/#codeActionOptions">Language Server Protocol specification</see> for additional information.
/// </para>
/// </summary>
internal class CodeActionOptions : IWorkDoneProgressOptions
{
/// <summary>
/// Gets or sets the kinds of code action that this server may return.
/// </summary>
/// <remarks>
/// The list of kinds may be generic, such as <see cref="CodeActionKind.Refactor"/>, or the server
/// may list out every specific kind they provide.
/// </remarks>
[JsonPropertyName("codeActionKinds")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public CodeActionKind[]? CodeActionKinds
{
get;
set;
}
/// <summary>
/// Gets or sets a value indicating whether the server provides support to resolve
/// additional information for a code action.
/// </summary>
/// <remarks>Since LSP 3.16</remarks>
[JsonPropertyName("resolveProvider")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool ResolveProvider
{
get;
set;
}
/// <summary>
/// Gets or sets a value indicating whether work done progress is supported.
/// </summary>
[JsonPropertyName("workDoneProgress")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool WorkDoneProgress { get; init; }
}
}
|