Google Cloud Debugger v2 API - Class SourceLocation (3.2.0)

public sealed class SourceLocation : IMessage<SourceLocation>, IEquatable<SourceLocation>, IDeepCloneable<SourceLocation>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Debugger v2 API class SourceLocation.

Represents a location in the source code.

Inheritance

object > SourceLocation

Namespace

Google.Cloud.Debugger.V2

Assembly

Google.Cloud.Debugger.V2.dll

Constructors

SourceLocation()

public SourceLocation()

SourceLocation(SourceLocation)

public SourceLocation(SourceLocation other)
Parameter
NameDescription
otherSourceLocation

Properties

Column

public int Column { get; set; }

Column within a line. The first column in a line as the value 1. Agents that do not support setting breakpoints on specific columns ignore this field.

Property Value
TypeDescription
int

Line

public int Line { get; set; }

Line inside the file. The first line in the file has the value 1.

Property Value
TypeDescription
int

Path

public string Path { get; set; }

Path to the source file within the source context of the target binary.

Property Value
TypeDescription
string