Google Cloud Debugger v2 API - Class StackFrame (3.2.0)

public sealed class StackFrame : IMessage<StackFrame>, IEquatable<StackFrame>, IDeepCloneable<StackFrame>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Debugger v2 API class StackFrame.

Represents a stack frame context.

Inheritance

object > StackFrame

Namespace

Google.Cloud.Debugger.V2

Assembly

Google.Cloud.Debugger.V2.dll

Constructors

StackFrame()

public StackFrame()

StackFrame(StackFrame)

public StackFrame(StackFrame other)
Parameter
NameDescription
otherStackFrame

Properties

Arguments

public RepeatedField<Variable> Arguments { get; }

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

Property Value
TypeDescription
RepeatedFieldVariable

Function

public string Function { get; set; }

Demangled function name at the call site.

Property Value
TypeDescription
string

Locals

public RepeatedField<Variable> Locals { get; }

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

Property Value
TypeDescription
RepeatedFieldVariable

Location

public SourceLocation Location { get; set; }

Source location of the call site.

Property Value
TypeDescription
SourceLocation