Class AuthChallenge
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
Realm
The realm of the challenge. May be empty.
[JsonPropertyName("realm")]
public string Realm { get; set; }
Property Value
Scheme
The authentication scheme used, such as basic or digest
[JsonPropertyName("scheme")]
public string Scheme { get; set; }
Property Value
Source
Source of the authentication challenge.
[JsonPropertyName("source")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public AuthChallengeSourceValues? Source { get; set; }