Workflow Executions v1 API - Class Execution.Types.StackTraceElement.Types.Position (2.5.0)

public sealed class Execution.Types.StackTraceElement.Types.Position : IMessage<Execution.Types.StackTraceElement.Types.Position>, IEquatable<Execution.Types.StackTraceElement.Types.Position>, IDeepCloneable<Execution.Types.StackTraceElement.Types.Position>, IBufferMessage, IMessage

Reference documentation and code samples for the Workflow Executions v1 API class Execution.Types.StackTraceElement.Types.Position.

Position contains source position information about the stack trace element such as line number, column number and length of the code block in bytes.

Inheritance

object > Execution.Types.StackTraceElement.Types.Position

Namespace

Google.Cloud.Workflows.Executions.V1

Assembly

Google.Cloud.Workflows.Executions.V1.dll

Constructors

Position()

public Position()

Position(Position)

public Position(Execution.Types.StackTraceElement.Types.Position other)
Parameter
NameDescription
otherExecutionTypesStackTraceElementTypesPosition

Properties

Column

public long Column { get; set; }

The source code column position (of the line) the current instruction was generated from.

Property Value
TypeDescription
long

Length

public long Length { get; set; }

The number of bytes of source code making up this stack trace element.

Property Value
TypeDescription
long

Line

public long Line { get; set; }

The source code line number the current instruction was generated from.

Property Value
TypeDescription
long