// // 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.EditorServices.Protocol.MessageProtocol; namespace Microsoft.SqlTools.EditorServices.Protocol.DebugAdapter { public class StoppedEvent { public static readonly EventType Type = EventType.Create("stopped"); } public class StoppedEventBody { /// /// A value such as "step", "breakpoint", "exception", or "pause" /// public string Reason { get; set; } /// /// Gets or sets the current thread ID, if any. /// public int? ThreadId { get; set; } public Source Source { get; set; } public int Line { get; set; } public int Column { get; set; } /// /// Gets or sets additional information such as an error message. /// public string Text { get; set; } } }