Table of Contents

Class CrashReportContextEntry

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

Key-value pair in CrashReportContext.

public sealed record CrashReportContextEntry : IEquatable<CrashReportContextEntry>
Inheritance
CrashReportContextEntry
Implements
Inherited Members

Constructors

CrashReportContextEntry(string, string, FrameId)

Key-value pair in CrashReportContext.

public CrashReportContextEntry(string Key, string Value, FrameId FrameId)

Parameters

Key string
Value string
FrameId FrameId

The ID of the frame where the key-value pair was set.

Properties

FrameId

The ID of the frame where the key-value pair was set.

public FrameId FrameId { get; init; }

Property Value

FrameId

Key

public string Key { get; init; }

Property Value

string

Value

public string Value { get; init; }

Property Value

string