//
// 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.QueryExecution.Contracts
{
///
/// Parameters to be sent back with a query execution complete event
///
public class QueryExecuteCompleteParams
{
///
/// URI for the editor that owns the query
///
public string OwnerUri { get; set; }
///
/// Summaries of the result sets that were returned with the query
///
public BatchSummary[] BatchSummaries { get; set; }
}
public class QueryExecuteCompleteEvent
{
public static readonly
EventType Type =
EventType.Create("query/complete");
}
}