Table of Contents

Class TracingCompleteEventArgs

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

Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.

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

Constructors

TracingCompleteEventArgs(bool, StreamHandle?, StreamFormat?, StreamCompression?)

Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.

public TracingCompleteEventArgs(bool DataLossOccurred, StreamHandle? Stream = null, StreamFormat? TraceFormat = null, StreamCompression? StreamCompression = null)

Parameters

DataLossOccurred bool

Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around.

Stream StreamHandle

A handle of the stream that holds resulting trace data.

TraceFormat StreamFormat?

Trace data format of returned stream.

StreamCompression StreamCompression?

Compression format of returned stream.

Properties

DataLossOccurred

Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around.

public bool DataLossOccurred { get; init; }

Property Value

bool

Stream

A handle of the stream that holds resulting trace data.

public StreamHandle? Stream { get; init; }

Property Value

StreamHandle

StreamCompression

Compression format of returned stream.

public StreamCompression? StreamCompression { get; init; }

Property Value

StreamCompression?

TraceFormat

Trace data format of returned stream.

public StreamFormat? TraceFormat { get; init; }

Property Value

StreamFormat?