Table of Contents

Class BufferUsageEventArgs

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

Constructors

BufferUsageEventArgs(double?, double?, double?)

public BufferUsageEventArgs(double? PercentFull = null, double? EventCount = null, double? Value = null)

Parameters

PercentFull double?

A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.

EventCount double?

An approximate number of events in the trace log.

Value double?

A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.

Properties

EventCount

An approximate number of events in the trace log.

public double? EventCount { get; init; }

Property Value

double?

PercentFull

A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.

public double? PercentFull { get; init; }

Property Value

double?

Value

A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.

public double? Value { get; init; }

Property Value

double?