Table of Contents

Class PreloadingAttemptSource

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

Lists sources for a preloading attempt, specifically the ids of rule sets that had a speculation rule that triggered the attempt, and the BackendNodeIds of <a href> or <area href> elements that triggered the attempt (in the case of attempts triggered by a document rule). It is possible for multiple rule sets and links to trigger a single attempt.

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

Constructors

PreloadingAttemptSource(PreloadingAttemptKey, ImmutableArray<RuleSetId>, ImmutableArray<BackendNodeId>)

Lists sources for a preloading attempt, specifically the ids of rule sets that had a speculation rule that triggered the attempt, and the BackendNodeIds of <a href> or <area href> elements that triggered the attempt (in the case of attempts triggered by a document rule). It is possible for multiple rule sets and links to trigger a single attempt.

public PreloadingAttemptSource(PreloadingAttemptKey Key, ImmutableArray<RuleSetId> RuleSetIds, ImmutableArray<BackendNodeId> NodeIds)

Parameters

Key PreloadingAttemptKey
RuleSetIds ImmutableArray<RuleSetId>
NodeIds ImmutableArray<BackendNodeId>

Properties

Key

public PreloadingAttemptKey Key { get; init; }

Property Value

PreloadingAttemptKey

NodeIds

public ImmutableArray<BackendNodeId> NodeIds { get; init; }

Property Value

ImmutableArray<BackendNodeId>

RuleSetIds

public ImmutableArray<RuleSetId> RuleSetIds { get; init; }

Property Value

ImmutableArray<RuleSetId>