'DeclarationFunction VerifyPassword( _ ByVal securityId As String, _ ByVal password As String _ ) As Boolean
'UsageDim instance As IReadOnlyNameAndPasswordUserManager Dim securityId As String Dim password As String Dim value As Boolean value = instance.VerifyPassword(securityId, password)
bool VerifyPassword( string securityId, string password )
bool VerifyPassword( String^ securityId, String^ password )
Parameters
- securityId
- The security ID of the user.
The value of this parameter cannot be
null(Nothingin Visual Basic). - password
- The password to verify.
The value of this parameter cannot be
null(Nothingin Visual Basic).
Return Value
true when the user with security ID securityId has password password. Returns false when the user with security Id securityId does not exist, or when it has a different password.