mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 01:25:41 -05:00
Initial commit of SqlTools Service API
This commit is contained in:
22
ServiceHost/DebugAdapter/ThreadsRequest.cs
Normal file
22
ServiceHost/DebugAdapter/ThreadsRequest.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
using Microsoft.PowerShell.EditorServices.Protocol.MessageProtocol;
|
||||
|
||||
namespace Microsoft.PowerShell.EditorServices.Protocol.DebugAdapter
|
||||
{
|
||||
public class ThreadsRequest
|
||||
{
|
||||
public static readonly
|
||||
RequestType<object, ThreadsResponseBody> Type =
|
||||
RequestType<object, ThreadsResponseBody>.Create("threads");
|
||||
}
|
||||
|
||||
public class ThreadsResponseBody
|
||||
{
|
||||
public Thread[] Threads { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user