CustomAuthenticator AuthenticateTokenCore Method TIBCO Spotfire 6.0 API Reference
Performs the user authentication. The AuthenticationContext parameter can be used to retrieve information about the user to authenticate.

Namespace: Spotfire.Dxp.Web
Assembly: Spotfire.Dxp.Web (in Spotfire.Dxp.Web.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

protected abstract IIdentity AuthenticateTokenCore(
	AuthenticationContext context
)

Return Value

Type: IIdentity
An IIdentity representing the authenticated user.
Remarks

Since this method can be called by multiple threads concurrently it is important that the implementation is reentrant as well as stateless.

Use the static CreateIdentity(String) method to create the returned IIdentity instance.

See Also