Table of Contents

Class SamplingProfileNode

Namespace
Selenium.WebDriver.BiDi.Cdp.Memory
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Heap profile sample.

public sealed record SamplingProfileNode : IEquatable<SamplingProfileNode>
Inheritance
SamplingProfileNode
Implements
Inherited Members

Constructors

SamplingProfileNode(double, double, ImmutableArray<string>)

Heap profile sample.

public SamplingProfileNode(double Size, double Total, ImmutableArray<string> Stack)

Parameters

Size double

Size of the sampled allocation.

Total double

Total bytes attributed to this sample.

Stack ImmutableArray<string>

Execution stack at the point of allocation.

Properties

Size

Size of the sampled allocation.

public double Size { get; init; }

Property Value

double

Stack

Execution stack at the point of allocation.

public ImmutableArray<string> Stack { get; init; }

Property Value

ImmutableArray<string>

Total

Total bytes attributed to this sample.

public double Total { get; init; }

Property Value

double