public sealed class SourceLocation : IMessage<SourceLocation>, IEquatable<SourceLocation>, IDeepCloneable<SourceLocation>, IBufferMessage, IMessage
Represents a location in the source code.
Implements
IMessage<SourceLocation>, IEquatable<SourceLocation>, IDeepCloneable<SourceLocation>, IBufferMessage, IMessageNamespace
Google.Cloud.Debugger.V2Assembly
Google.Cloud.Debugger.V2.dll
Constructors
SourceLocation()
public SourceLocation()
SourceLocation(SourceLocation)
public SourceLocation(SourceLocation other)
Parameter | |
---|---|
Name | Description |
other | SourceLocation |
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 | |
---|---|
Type | Description |
Int32 |
Line
public int Line { get; set; }
Line inside the file. The first line in the file has the value 1
.
Property Value | |
---|---|
Type | Description |
Int32 |
Path
public string Path { get; set; }
Path to the source file within the source context of the target binary.
Property Value | |
---|---|
Type | Description |
String |