VerifyKeys() public méthode

public VerifyKeys ( string hashedKey, string providedKey ) : bool
hashedKey string
providedKey string
Résultat bool
 public static bool UserKeyValid(this ApplicationUser user, string key)
 {
     var userKeyService = new UserKeyService();
     return userKeyService.VerifyKeys(user.UserKeyHash, key.Trim());
 }