Debugger4.Break(Boolean) Method

Definition

Causes the given process to pause its execution so that its current state can be analyzed.

void Break(bool WaitForBreakMode = true);
[System.Runtime.InteropServices.DispId(7)]
public void Break (bool WaitForBreakMode = true);
[<System.Runtime.InteropServices.DispId(7)>]
abstract member Break : bool -> unit
Public Sub Break (Optional WaitForBreakMode As Boolean = true)

Parameters

WaitForBreakMode
Boolean

Set to true to return only when the debugger has entered break mode. Set to false to break and return immediately. See How to: Break Execution for more information.

Implements

Attributes

Remarks

See Break.

Applies to