Table of Contents

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

error string
errorDescription string

Properties

AuthenticationRequestId

Gets or sets the authentication request id.

public string AuthenticationRequestId { get; set; }

Property Value

string

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

Dictionary<string, object>

Error

Gets or sets the error.

public string Error { get; set; }

Property Value

string

ErrorDescription

Gets or sets the error description.

public string ErrorDescription { get; set; }

Property Value

string

ExpiresIn

Gets or sets the expires in.

public int ExpiresIn { get; set; }

Property Value

int

Interval

Gets or sets the interval.

public int Interval { get; set; }

Property Value

int

IsError

Indicates if this response represents an error.

public bool IsError { get; }

Property Value

bool