Class AuthChallengeResponse
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
ResponsestringThe 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
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
Username
The username to provide, possibly empty. Should only be set if response is ProvideCredentials.
public string? Username { get; init; }