mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 17:23:27 -05:00
* Move unused forked code to external directory * Fix SLN build errors * Add back resource provider core since it's referenced by main resource provider project * Update PackageProjects step of pipeline
67 lines
2.2 KiB
C#
67 lines
2.2 KiB
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.Contracts;
|
|
|
|
namespace Microsoft.SqlTools.DataProtocol.Contracts.Connection
|
|
{
|
|
/// <summary>
|
|
/// Parameters to be sent back with a connection complete event
|
|
/// </summary>
|
|
public class ConnectionCompleteParams
|
|
{
|
|
/// <summary>
|
|
/// 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.
|
|
/// </summary>
|
|
public string OwnerUri { get; set; }
|
|
|
|
/// <summary>
|
|
/// A GUID representing a unique connection ID
|
|
/// </summary>
|
|
public string ConnectionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets any detailed connection error messages.
|
|
/// </summary>
|
|
public string Messages { get; set; }
|
|
|
|
/// <summary>
|
|
/// Error message returned from the engine for a connection failure reason, if any.
|
|
/// </summary>
|
|
public string ErrorMessage { get; set; }
|
|
|
|
/// <summary>
|
|
/// Error number returned from the engine for connection failure reason, if any.
|
|
/// </summary>
|
|
public int ErrorNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// Information about the connected server.
|
|
/// </summary>
|
|
public ServerInfo ServerInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the actual Connection established, including Database Name
|
|
/// </summary>
|
|
public ConnectionSummary ConnectionSummary { get; set; }
|
|
|
|
/// <summary>
|
|
/// The type of connection that this notification is for
|
|
/// </summary>
|
|
public string Type { get; set; } = ConnectionType.Default;
|
|
}
|
|
|
|
/// <summary>
|
|
/// ConnectionComplete notification mapping entry
|
|
/// </summary>
|
|
public class ConnectionCompleteNotification
|
|
{
|
|
public static readonly
|
|
EventType<ConnectionCompleteParams> Type =
|
|
EventType<ConnectionCompleteParams>.Create("connection/complete");
|
|
}
|
|
}
|