|
SessionHandlerGetAuthenticationTokenFromCookie(IOwinRequest, String) Method
|
Gets the authentication token as defined in the request cookie header values.
Namespace: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.207-beta
Syntax public static string GetAuthenticationTokenFromCookie(
IOwinRequest request,
string authenticationToken
)
Public Shared Function GetAuthenticationTokenFromCookie (
request As IOwinRequest,
authenticationToken As String
) As String
public:
static String^ GetAuthenticationTokenFromCookie(
IOwinRequest^ request,
String^ authenticationToken
)
static member GetAuthenticationTokenFromCookie :
request : IOwinRequest *
authenticationToken : string -> string
GSF.Web.Security.SessionHandler.GetAuthenticationTokenFromCookie = function(request, authenticationToken);
View SourceParameters
- request IOwinRequest
- The target Owin request.
- authenticationToken String
- Token used for identifying the authentication token in cookie headers.
Return Value
StringAuthentication token string, if defined; otherwise,
null.
See Also