// // 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 { /// /// SetExceptionBreakpoints request; value of command field is "setExceptionBreakpoints". /// Enable that the debuggee stops on exceptions with a StoppedEvent (event type 'exception'). /// public class SetExceptionBreakpointsRequest { public static readonly RequestType Type = RequestType.Create("setExceptionBreakpoints"); } /// /// Arguments for "setExceptionBreakpoints" request. /// public class SetExceptionBreakpointsRequestArguments { /// /// Gets or sets the names of enabled exception breakpoints. /// public string[] Filters { get; set; } } }