 | UserManagementServicecheckAuthorizationKey Method |
Checks if the authorization key is still valid.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic string checkAuthorizationKey(
string authKey
)
Public Function checkAuthorizationKey (
authKey As String
) As String
public:
String^ checkAuthorizationKey(
String^ authKey
)
public function checkAuthorizationKey(
authKey : String
) : String
function checkAuthorizationKey(authKey);
Parameters
- authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService
Return Value
Type:
StringIf the authorization key is valid, the user name attached to the key is returned, otherwise
is returned.
RemarksThe authorization key is valid until the
SessionTimeout threshold is met.
Use the renewToken method to keep an authentication key active.
Authentication key timeouts are reset with any method call using the key.
See Also