Table of Contents

Class GetHeapUsageResult

Namespace
Selenium.WebDriver.BiDi.Cdp.Runtime
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record GetHeapUsageResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetHeapUsageResult>
Inheritance
EmptyResult
GetHeapUsageResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

GetHeapUsageResult(double, double, double, double)

public GetHeapUsageResult(double UsedSize, double TotalSize, double EmbedderHeapUsedSize, double BackingStorageSize)

Parameters

UsedSize double

Used JavaScript heap size in bytes.

TotalSize double

Allocated JavaScript heap size in bytes.

EmbedderHeapUsedSize double

Used size in bytes in the embedder's garbage-collected heap.

BackingStorageSize double

Size in bytes of backing storage for array buffers and external strings.

Properties

BackingStorageSize

Size in bytes of backing storage for array buffers and external strings.

public double BackingStorageSize { get; init; }

Property Value

double

EmbedderHeapUsedSize

Used size in bytes in the embedder's garbage-collected heap.

public double EmbedderHeapUsedSize { get; init; }

Property Value

double

TotalSize

Allocated JavaScript heap size in bytes.

public double TotalSize { get; init; }

Property Value

double

UsedSize

Used JavaScript heap size in bytes.

public double UsedSize { get; init; }

Property Value

double