|
SessionHandlerTryGetCachedCredentials Method
|
Attempts to use the authentication token to retrieve the user's credentials from the credential cache.
Namespace: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.207-beta
Syntax public static bool TryGetCachedCredentials(
string authenticationToken,
out string username,
out string password
)
static member TryGetCachedCredentials :
authenticationToken : string *
username : string byref *
password : string byref -> bool
GSF.Web.Security.SessionHandler.TryGetCachedCredentials = function(authenticationToken, username, password);
View SourceParameters
- authenticationToken String
- The token used to retrieve the user's credentials.
- username String
- The username of the user.
- password String
- THe user's password.
Return Value
BooleanTrue if the user's credentials were successfully retrieved; false otherwise.
See Also