Table of Contents

Class AuthChallengeResponse

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

Response to an AuthChallenge.

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

Constructors

AuthChallengeResponse(string)

Response to an AuthChallenge.

public AuthChallengeResponse(string Response)

Parameters

Response string

The decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.

Properties

Password

The password to provide, possibly empty. Should only be set if response is ProvideCredentials.

public string? Password { get; init; }

Property Value

string

Response

The decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.

public string Response { get; init; }

Property Value

string

Username

The username to provide, possibly empty. Should only be set if response is ProvideCredentials.

public string? Username { get; init; }

Property Value

string