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
-
EventArgsLastSeenObjectIdEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.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
Properties
LastSeenObjectId
public long LastSeenObjectId { get; init; }
Property Value
Timestamp
public double Timestamp { get; init; }