mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-17 09:35:37 -05:00
20 lines
608 B
C#
20 lines
608 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.Hosting.Protocol.Contracts;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.Connection.Contracts
|
|
{
|
|
/// <summary>
|
|
/// Get Connection String request
|
|
/// </summary>
|
|
public class GetConnectionStringRequest
|
|
{
|
|
public static readonly
|
|
RequestType<GetConnectionStringParams, string> Type =
|
|
RequestType<GetConnectionStringParams, string>.Create("connection/getconnectionstring");
|
|
}
|
|
}
|