Show / Hide Table of Contents

Class StackFrame

Represents a single stack frame in a stack trace.

Inheritance
object
StackFrame
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.CloudTrace.v2.Data
Assembly: Google.Apis.CloudTrace.v2.dll
Syntax
public class StackFrame : IDirectResponseSchema

Properties

ColumnNumber

The column number where the function call appears, if available. This is important in JavaScript because of its anonymous functions.

Declaration
[JsonProperty("columnNumber")]
public virtual long? ColumnNumber { 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

FileName

The name of the source file where the function call appears (up to 256 bytes).

Declaration
[JsonProperty("fileName")]
public virtual TruncatableString FileName { get; set; }
Property Value
Type Description
TruncatableString

FunctionName

The fully-qualified name that uniquely identifies the function or method that is active in this frame (up to 1024 bytes).

Declaration
[JsonProperty("functionName")]
public virtual TruncatableString FunctionName { get; set; }
Property Value
Type Description
TruncatableString

LineNumber

The line number in file_name where the function call appears.

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

LoadModule

The binary module from where the code was loaded.

Declaration
[JsonProperty("loadModule")]
public virtual Module LoadModule { get; set; }
Property Value
Type Description
Module

OriginalFunctionName

An un-mangled function name, if function_name is mangled. To get information about name mangling, run this search. The name can be fully-qualified (up to 1024 bytes).

Declaration
[JsonProperty("originalFunctionName")]
public virtual TruncatableString OriginalFunctionName { get; set; }
Property Value
Type Description
TruncatableString

SourceVersion

The version of the deployed source code (up to 128 bytes).

Declaration
[JsonProperty("sourceVersion")]
public virtual TruncatableString SourceVersion { get; set; }
Property Value
Type Description
TruncatableString

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX