Class UserLoginRequiresVerificationNotification
Notification that is published when a user login requires additional verification (e.g., two-factor authentication).
Namespace: Umbraco.Cms.Core.Notifications
Assembly: Umbraco.Core.dll
Syntax
public class UserLoginRequiresVerificationNotification : UserNotification, INotification
Remarks
This notification is published when a user successfully provides their credentials but needs to complete an additional verification step before being fully logged in.
Constructors
View SourceUserLoginRequiresVerificationNotification(string, string?, string)
Initializes a new instance of the UserLoginRequiresVerificationNotification class.
Declaration
public UserLoginRequiresVerificationNotification(string ipAddress, string? affectedUserId, string performingUserId)
Parameters
| Type | Name | Description |
|---|---|---|
| string | ipAddress | The source IP address of the user. |
| string | affectedUserId | The ID of the user requiring verification. |
| string | performingUserId | The ID of the user performing the login action. |