'DeclarationFunction SetPassword( _ ByVal securityId As String, _ ByVal password As String _ ) As Boolean
'UsageDim instance As INameAndPasswordUserManager Dim securityId As String Dim password As String Dim value As Boolean value = instance.SetPassword(securityId, password)
bool SetPassword( string securityId, string password )
bool SetPassword( 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 new password for the user.
The value of this parameter cannot be
null(Nothingin Visual Basic).
Return Value
true if the password was set successfully; otherwise, false.