// // 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.Explorer { /// /// Parameters to the . /// public class RefreshParams: ExpandParams { } /// /// A request to expand a /// public class RefreshRequest { /// /// Returns children of a given node as a array. /// public static readonly RequestType Type = RequestType.Create("explorer/refresh"); } }