Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the property used to hash/verify passwords.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Public Property PasswordHasher As IPasswordHasher
Get
Set
'Usage
Dim instance As UserManager
Dim value As IPasswordHasher
value = instance.PasswordHasher
instance.PasswordHasher = value
public IPasswordHasher PasswordHasher { get; set; }
public:
property IPasswordHasher^ PasswordHasher {
IPasswordHasher^ get ();
void set (IPasswordHasher^ value);
}
member PasswordHasher : IPasswordHasher with get, set
function get PasswordHasher () : IPasswordHasher
function set PasswordHasher (value : IPasswordHasher)
Type: Microsoft.AspNet.Identity.IPasswordHasher
The property used to hash/verify passwords.
UserManager<TUser, TKey> Class