Show / Hide Table of Contents

Class 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
Position
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.WorkflowExecutions.v1.Data
Assembly: Google.Apis.WorkflowExecutions.v1.dll
Syntax
public class Position : IDirectResponseSchema

Properties

Column

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

Declaration
[JsonProperty("column")]
public virtual long? Column { get; set; }
Property Value
Type Description
long?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Length

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

Declaration
[JsonProperty("length")]
public virtual long? Length { get; set; }
Property Value
Type Description
long?

Line

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

Declaration
[JsonProperty("line")]
public virtual long? Line { get; set; }
Property Value
Type Description
long?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX