Skip to main content
.NET 6.0+

SecurityModule.ChangePasswordOnLogonAction Property

An Action that shows the Change password on first logon dialog.

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.Security.v23.2.dll

Declaration

[Browsable(false)]
public PopupWindowShowAction ChangePasswordOnLogonAction { get; }

Property Value

Type Description
PopupWindowShowAction

A PopupWindowShowAction Action that shows the Change password on first logon dialog.

Remarks

Users that implement the IAuthenticationStandardUser interface have the IAuthenticationStandardUser.ChangePasswordOnFirstLogon property. This property specifies whether they are prompted to change their password on the first logon. When this property is set to true for a particular user, an additional dialog represented by the ChangePasswordOnLogonParameters Detail View is displayed by the ChangePasswordOnLogonAction Action after authentication. The image below shows the displayed dialog.

ChangePasswordOnFirstLogon

When executed, the ChangePasswordOnLogonAction Action can throw the RetypeTheInformation exception in the following cases:

  • New password value is the same as an old password value.
  • New password value and a confirmed password value are different.
See Also