 | UserManagementServiceauthenticateUser 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 authenticateUserExt instead")]
public bool authenticateUser(
string authKey,
string username,
string password
)
<ObsoleteAttribute("Use authenticateUserExt instead")>
Public Function authenticateUser (
authKey As String,
username As String,
password As String
) As Boolean
public:
[ObsoleteAttribute(L"Use authenticateUserExt instead")]
bool authenticateUser(
String^ authKey,
String^ username,
String^ password
)
public function authenticateUser(
authKey : String,
username : String,
password : String
) : boolean
function authenticateUser(authKey, username, password);
Parameters
- authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection. - username
- Type: SystemString
The user name to be authenticated. - password
- Type: SystemString
The password to be authenticated.
Return Value
Type:
BooleanTrue if the user name and password are valid,
False otherwise.
Remarks
See Also