mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
20 lines
614 B
C#
20 lines
614 B
C#
//
|
|
// 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.ServiceLayer.Hosting.Protocol.Contracts;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.Connection.Contracts
|
|
{
|
|
/// <summary>
|
|
/// ConnectionChanged notification mapping entry
|
|
/// </summary>
|
|
public class ConnectionChangedNotification
|
|
{
|
|
public static readonly
|
|
EventType<ConnectionChangedParams> Type =
|
|
EventType<ConnectionChangedParams>.Create("connection/connectionchanged");
|
|
}
|
|
}
|