Table of Contents

Class LastSeenObjectIdEventArgs

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

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

public sealed record LastSeenObjectIdEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<LastSeenObjectIdEventArgs>
Inheritance
EventArgs
LastSeenObjectIdEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

LastSeenObjectIdEventArgs(long, double)

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

public LastSeenObjectIdEventArgs(long LastSeenObjectId, double Timestamp)

Parameters

LastSeenObjectId long
Timestamp double

Properties

LastSeenObjectId

public long LastSeenObjectId { get; init; }

Property Value

long

Timestamp

public double Timestamp { get; init; }

Property Value

double