Table of Contents

Class ConsoleProfileStartedEventArgs

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

Sent when new profile recording is started using console.profile() call.

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

Constructors

ConsoleProfileStartedEventArgs(string, Location, string?)

Sent when new profile recording is started using console.profile() call.

public ConsoleProfileStartedEventArgs(string Id, Location Location, string? Title = null)

Parameters

Id string
Location Location

Location of console.profile().

Title string

Profile title passed as an argument to console.profile().

Properties

Id

public string Id { get; init; }

Property Value

string

Location

Location of console.profile().

public Location Location { get; init; }

Property Value

Location

Title

Profile title passed as an argument to console.profile().

public string? Title { get; init; }

Property Value

string