UserManager<TUser, TKey>.PasswordHasher Property

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)

Syntax

'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)

Property Value

Type: Microsoft.AspNet.Identity.IPasswordHasher
The property used to hash/verify passwords.

See Also

Reference

UserManager<TUser, TKey> Class

Microsoft.AspNet.Identity Namespace

Other Resources

ASP.NET Identity