Class BackchannelAuthenticationResponse
- Namespace
- Duende.IdentityServer.ResponseHandling
- Assembly
- Duende.IdentityServer.dll
Models a backchannel authentication response
public class BackchannelAuthenticationResponse
- Inheritance
-
BackchannelAuthenticationResponse
- Inherited Members
Constructors
BackchannelAuthenticationResponse()
Ctor.
public BackchannelAuthenticationResponse()
BackchannelAuthenticationResponse(string, string)
Ctor.
public BackchannelAuthenticationResponse(string error, string errorDescription = null)
Parameters
Properties
AuthenticationRequestId
Gets or sets the authentication request id.
public string AuthenticationRequestId { get; set; }
Property Value
Custom
Gets or sets a dictionary of custom properties that will be included in the response to the client. This dictionary is intended to be used to implement extensions to CIBA that defines additional response parameters.
public Dictionary<string, object> Custom { get; set; }
Property Value
Error
Gets or sets the error.
public string Error { get; set; }
Property Value
ErrorDescription
Gets or sets the error description.
public string ErrorDescription { get; set; }
Property Value
ExpiresIn
Gets or sets the expires in.
public int ExpiresIn { get; set; }
Property Value
Interval
Gets or sets the interval.
public int Interval { get; set; }
Property Value
IsError
Indicates if this response represents an error.
public bool IsError { get; }