NetForumAuthenticationManagerAuthenticateCustomer(Guid, AuthenticatedCustomer) Method
Attempts to authenticate a customer using a one-time-use authentication (xws) token.
If the customer is successfully authenticated, the authentication token will be automatically invalidated.
This method can be used with the 'Single Sign-On With eWeb - eWeb Login' login flow at wiki.avectra.com/sso
Namespace: Ignition.Crm.AccountManagementAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
public bool AuthenticateCustomer(
Guid authenticationToken,
out AuthenticatedCustomer authenticatedCustomer
)
Public Function AuthenticateCustomer (
authenticationToken As Guid,
<OutAttribute> ByRef authenticatedCustomer As AuthenticatedCustomer
) As Boolean
public:
virtual bool AuthenticateCustomer(
Guid authenticationToken,
[OutAttribute] AuthenticatedCustomer^% authenticatedCustomer
) sealed
abstract AuthenticateCustomer :
authenticationToken : Guid *
authenticatedCustomer : AuthenticatedCustomer byref -> bool
override AuthenticateCustomer :
authenticationToken : Guid *
authenticatedCustomer : AuthenticatedCustomer byref -> bool
- authenticationToken Guid
- Authentication token
- authenticatedCustomer AuthenticatedCustomer
- Will contain the retrieved customer if the lookup was successful, otherwise null
BooleanWhether the lookup was successful
Once a token has been used successfully, it is immediately invalidated.
As such, subsequent calls to this method with the same authenticationToken will always return false