Table of Contents

Interface IDebuggerWatchesPanel

Namespace
Alternet.Scripter.Debugger.UI.AlternetUI
Assembly
Alternet.Scripter.Debugger.UI.AlternetUI.v10.dll

Represents a panel interface for managing and displaying debugger watch expressions.

public interface IDebuggerWatchesPanel : IDebuggerBaseEvaluationPanel, IDebuggerPanel

Remarks

This interface extends IDebuggerBaseEvaluationPanel to provide functionality specific to managing watch expressions in a debugging context. Implementations of this interface are typically used to display and evaluate variables or expressions that the user has added to the watch list during a debugging session.

Methods

AddWatch(string)

Adds specified expression to the list of watches.

AddWatch(string, bool, bool)

Adds specified expression to the list of watches.

EvaluateWatchExpressions()

Evaluates all active watch expressions and updates their values.

RunAddWatchCommand()

Displays the watch dialog to add a new watch expression.