Show / Hide Table of Contents

Class StackFrame

Represents a stack frame context.

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

Properties

Arguments

Set of arguments passed to this function. Note that this might not be populated for all stack frames.

Declaration
[JsonProperty("arguments")]
public virtual IList<Variable> Arguments { get; set; }
Property Value
Type Description
IList<Variable>

ETag

The ETag of the item.

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

Function

Demangled function name at the call site.

Declaration
[JsonProperty("function")]
public virtual string Function { get; set; }
Property Value
Type Description
string

Locals

Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.

Declaration
[JsonProperty("locals")]
public virtual IList<Variable> Locals { get; set; }
Property Value
Type Description
IList<Variable>

Location

Source location of the call site.

Declaration
[JsonProperty("location")]
public virtual SourceLocation Location { get; set; }
Property Value
Type Description
SourceLocation

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX