Class BackchannelAuthenticationFailureEvent
- Namespace
- Duende.IdentityServer.Events
- Assembly
- Duende.IdentityServer.dll
Event for failed backchannel authentication result
public class BackchannelAuthenticationFailureEvent : Event
- Inheritance
-
BackchannelAuthenticationFailureEvent
- Inherited Members
Constructors
BackchannelAuthenticationFailureEvent()
Initializes a new instance of the BackchannelAuthenticationFailureEvent class.
protected BackchannelAuthenticationFailureEvent()
- See Also
BackchannelAuthenticationFailureEvent(BackchannelAuthenticationRequestValidationResult)
Initializes a new instance of the BackchannelAuthenticationFailureEvent class.
public BackchannelAuthenticationFailureEvent(BackchannelAuthenticationRequestValidationResult result)
Parameters
result
BackchannelAuthenticationRequestValidationResultThe result.
- See Also
BackchannelAuthenticationFailureEvent(ValidatedBackchannelAuthenticationRequest, string, string)
Initializes a new instance of the BackchannelAuthenticationFailureEvent class.
public BackchannelAuthenticationFailureEvent(ValidatedBackchannelAuthenticationRequest request, string error, string description)
Parameters
request
ValidatedBackchannelAuthenticationRequestThe request.
error
stringThe error.
description
stringThe description.
- See Also
Properties
ClientId
Gets or sets the client identifier.
public string ClientId { get; set; }
Property Value
- string
The client identifier.
- See Also
ClientName
Gets or sets the name of the client.
public string ClientName { get; set; }
Property Value
- string
The name of the client.
- See Also
Endpoint
Gets or sets the endpoint.
public string Endpoint { get; set; }
Property Value
- string
The endpoint.
- See Also
Error
Gets or sets the error.
public string Error { get; set; }
Property Value
- string
The error.
- See Also
ErrorDescription
Gets or sets the error description.
public string ErrorDescription { get; set; }
Property Value
- string
The error description.
- See Also
Scopes
Gets or sets the scopes.
public string Scopes { get; set; }
Property Value
- string
The scopes.
- See Also
SubjectId
Gets or sets the subject identifier.
public string SubjectId { get; set; }
Property Value
- string
The subject identifier.
- See Also