Show / Hide Table of Contents

Class StackTraceElement

Stack trace element.

Inheritance
object
StackTraceElement
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmtracesService.Models
Assembly: OCI.DotNetSDK.Apmtraces.dll
Syntax
public class StackTraceElement

Properties

ClassName

Declaration
[JsonProperty(PropertyName = "className")]
public string ClassName { get; set; }
Property Value
Type Description
string

Name of the class containing the execution point.

FileName

Declaration
[JsonProperty(PropertyName = "fileName")]
public string FileName { get; set; }
Property Value
Type Description
string

Name of the source file containing the execution point.

LineNumber

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

Line number of the source line containing the execution point.

MethodName

Declaration
[JsonProperty(PropertyName = "methodName")]
public string MethodName { get; set; }
Property Value
Type Description
string

Name of the method containing the execution point.

Weightage

Declaration
[JsonProperty(PropertyName = "weightage")]
public float? Weightage { get; set; }
Property Value
Type Description
float?

The weight distribution that denotes the percentage occurrence of a method in the captured snapshots.

In this article
Back to top