PermissionPolicyUser.StoredPassword Property
Specifies the encrypted password stored in the database.
Namespace: DevExpress.Persistent.BaseImpl.EF.PermissionPolicy
Assembly: DevExpress.Persistent.BaseImpl.EFCore.v25.2.dll
NuGet Package: DevExpress.Persistent.BaseImpl.EFCore
Declaration
[Browsable(false)]
[NonCloneable]
[SecurityBrowsable]
public virtual string StoredPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| String | A string which is the encrypted password. |
Remarks
Passwords are stored encrypted and cannot be changed directly. Use DevExpress.Persistent.BaseImpl.EF.User.SetPassword(System.String) method to specify a password when creating a new user in code.
See Also