// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // namespace Microsoft.SqlTools.DataProtocol.Contracts.Connection { /// /// Parameters for the Disconnect Request. /// public class DisconnectParams { /// /// A URI identifying the owner of the connection. This will most commonly be a file in the workspace /// or a virtual file representing an object in a database. /// public string OwnerUri { get; set; } /// /// The type of connection we are disconnecting. If null, we will disconnect all connections. /// connections. /// public string Type { get; set; } } }