Class AuthChallengeResponse
Response to an AuthChallenge.
public sealed class AuthChallengeResponse
- Inheritance
-
AuthChallengeResponse
- Inherited Members
Properties
Password
The password to provide, possibly empty. Should only be set if response is ProvideCredentials.
[JsonPropertyName("password")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Password { get; set; }
Property Value
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.
[JsonPropertyName("response")]
public AuthChallengeResponseResponseValues Response { get; set; }
Property Value
Username
The username to provide, possibly empty. Should only be set if response is ProvideCredentials.
[JsonPropertyName("username")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Username { get; set; }