Class BreakLocation
public sealed record BreakLocation : IEquatable<BreakLocation>
- Inheritance
-
BreakLocation
- Implements
- Inherited Members
Constructors
BreakLocation(ScriptId, long)
public BreakLocation(ScriptId ScriptId, long LineNumber)
Parameters
ScriptIdScriptIdScript identifier as reported in the Debugger.scriptParsed.
LineNumberlongLine number in the script (0-based).
Properties
ColumnNumber
Column number in the script (0-based).
public long? ColumnNumber { get; init; }
Property Value
- long?
LineNumber
Line number in the script (0-based).
public long LineNumber { get; init; }
Property Value
ScriptId
Script identifier as reported in the Debugger.scriptParsed.
public ScriptId ScriptId { get; init; }
Property Value
Type
public string? Type { get; init; }