 | UserManagementServiceupdateUserPassword Method |
Note: This API is now obsolete.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntax[ObsoleteAttribute("Use updateUserPasswordExt instead")]
public bool updateUserPassword(
string authKey,
string userID,
string newPassword
)
<ObsoleteAttribute("Use updateUserPasswordExt instead")>
Public Function updateUserPassword (
authKey As String,
userID As String,
newPassword As String
) As Boolean
public:
[ObsoleteAttribute(L"Use updateUserPasswordExt instead")]
bool updateUserPassword(
String^ authKey,
String^ userID,
String^ newPassword
)
public function updateUserPassword(
authKey : String,
userID : String,
newPassword : String
) : boolean
function updateUserPassword(authKey, userID, newPassword);
Parameters
- authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService - userID
- Type: SystemString
The user ID. - newPassword
- Type: SystemString
The new password.
Return Value
Type:
BooleanTrue if the password is succesfully updated,
False otherwise.
Remarks
See Also