 | UserManagementServiceupdatePassword 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 updatePasswordExt instead")]
public bool updatePassword(
string oldPassword,
string newPassword,
string authKey
)
<ObsoleteAttribute("Use updatePasswordExt instead")>
Public Function updatePassword (
oldPassword As String,
newPassword As String,
authKey As String
) As Boolean
public:
[ObsoleteAttribute(L"Use updatePasswordExt instead")]
bool updatePassword(
String^ oldPassword,
String^ newPassword,
String^ authKey
)
public function updatePassword(
oldPassword : String,
newPassword : String,
authKey : String
) : boolean
function updatePassword(oldPassword, newPassword, authKey);
Parameters
- oldPassword
- Type: SystemString
The old password. - newPassword
- Type: SystemString
The new password. - authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService
Return Value
Type:
BooleanTrue if the password is succesfully updated,
False otherwise.
Remarks
See Also