mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 09:35:36 -05:00
Merge branch 'main' into v-chrcan/issue392
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// 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.Protocol.Contracts;
|
||||
|
||||
namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
|
||||
{
|
||||
/// <summary>
|
||||
/// Parameters for the connection uri changed notification.
|
||||
/// </summary>
|
||||
public class ConnectionUriChangedParams
|
||||
{
|
||||
public string NewOwnerUri { get; set; }
|
||||
public string OriginalOwnerUri { get; set; }
|
||||
}
|
||||
public class ConnectionUriChangedNotification
|
||||
{
|
||||
public static readonly
|
||||
EventType<ConnectionUriChangedParams> Type =
|
||||
EventType<ConnectionUriChangedParams>.Create("query/connectionUriChanged");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user