// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.SqlTools.Hosting.Contracts; namespace Microsoft.SqlTools.DataProtocol.Contracts.Connection { /// /// Parameters for the Language Flavor Change notification. /// public class LanguageFlavorChangeParams { /// /// A URI identifying the affected resource /// public string Uri { get; set; } /// /// The primary language /// public string Language { get; set; } /// /// The specific language flavor that is being set /// public string Flavor { get; set; } } /// /// Defines an event that is sent from the client to notify that /// the client is exiting and the server should as well. /// public class LanguageFlavorChangeNotification { public static readonly EventType Type = EventType.Create("connection/languageflavorchanged"); } }