File: Protocol\Registration.cs
Web Access
Project: src\src\LanguageServer\Protocol\Microsoft.CodeAnalysis.LanguageServer.Protocol.csproj (Microsoft.CodeAnalysis.LanguageServer.Protocol)
// 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 general registration information for registering for a capability.
    ///
    /// See the <see href="https://microsoft.github.io/language-server-protocol/specifications/specification-current/#registration">Language Server Protocol specification</see> for additional information.
    /// </summary>
    internal class Registration
    {
        /// <summary>
        /// Gets or sets the id used to register the request. This can be used to deregister later.
        /// </summary>
        [JsonPropertyName("id")]
        [JsonRequired]
        public string Id
        {
            get;
            set;
        }
 
        /// <summary>
        /// Gets or sets the method / capability to register for.
        /// </summary>
        [JsonPropertyName("method")]
        [JsonRequired]
        public string Method
        {
            get;
            set;
        }
 
        /// <summary>
        /// Gets or sets the options necessary for registration.
        /// </summary>
        [JsonPropertyName("registerOptions")]
        [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
        public object? RegisterOptions
        {
            get;
            set;
        }
    }
}