 | UserManagementServiceauthenticateUserExt Method |
Verify another user's login credentials.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic ResultLogin authenticateUserExt(
string authKey,
string username,
string password
)
Public Function authenticateUserExt (
authKey As String,
username As String,
password As String
) As ResultLogin
public:
ResultLogin^ authenticateUserExt(
String^ authKey,
String^ username,
String^ password
)
public function authenticateUserExt(
authKey : String,
username : String,
password : String
) : ResultLogin
function authenticateUserExt(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:
ResultLoginA ResultLogin object which contains these members.
Exceptions
Remarks
Success or failure is obtained by checking
ResultLogin.Status which
contains one of
these values.
Use this method when an implementation utilizes a shared administrator connection. In this case,
call this method to validate the end user's credentials.
The authorization key provided must be linked to an administrator role.
For a list of possible errors and warnings, see ResultLogin.ErrorType.
The authorization key provided must be linked to an administrator role.
See Also