Table of Contents

Class AuthChallenge

Namespace
OpenQA.Selenium.DevTools.V147.Network
Assembly
Selenium.WebDriver.dll

Authorization challenge for HTTP status code 401 or 407.

public sealed class AuthChallenge
Inheritance
AuthChallenge
Inherited Members

Properties

Origin

Origin of the challenger.

[JsonPropertyName("origin")]
public string Origin { get; set; }

Property Value

string

Realm

The realm of the challenge. May be empty.

[JsonPropertyName("realm")]
public string Realm { get; set; }

Property Value

string

Scheme

The authentication scheme used, such as basic or digest

[JsonPropertyName("scheme")]
public string Scheme { get; set; }

Property Value

string

Source

Source of the authentication challenge.

[JsonPropertyName("source")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public AuthChallengeSourceValues? Source { get; set; }

Property Value

AuthChallengeSourceValues?