Table of Contents

Class DeviceBoundSessionFailedRequest

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

Details about a failed device bound session network request.

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

Constructors

DeviceBoundSessionFailedRequest(string)

Details about a failed device bound session network request.

public DeviceBoundSessionFailedRequest(string RequestUrl)

Parameters

RequestUrl string

The failed request URL.

Properties

NetError

The net error of the response if it was not OK.

public string? NetError { get; init; }

Property Value

string

RequestUrl

The failed request URL.

public string RequestUrl { get; init; }

Property Value

string

ResponseError

The response code if the net error was OK and the response code was not 200.

public long? ResponseError { get; init; }

Property Value

long?

ResponseErrorBody

The body of the response if the net error was OK, the response code was not 200, and the response body was not empty.

public string? ResponseErrorBody { get; init; }

Property Value

string