Class UserLoginFailureEvent
- Namespace
- Duende.IdentityServer.Events
- Assembly
- Duende.IdentityServer.dll
Event for failed user authentication
public class UserLoginFailureEvent : Event
- Inheritance
-
UserLoginFailureEvent
- Inherited Members
Constructors
UserLoginFailureEvent(string, string, bool, string)
Initializes a new instance of the UserLoginFailureEvent class.
public UserLoginFailureEvent(string username, string error, bool interactive = true, string clientId = null)
Parameters
usernamestringThe username.
errorstringThe error.
interactiveboolSpecifies if login was interactive
clientIdstringThe client id
- See Also
Properties
ClientId
Gets or sets the client id.
public string ClientId { get; set; }
Property Value
- string
The client id.
- See Also
Endpoint
Gets or sets the endpoint.
public string Endpoint { get; set; }
Property Value
- string
The endpoint.
- See Also
Username
Gets or sets the username.
public string Username { get; set; }
Property Value
- string
The username.
- See Also