EWebAccountService.TryGetUserByEmailAndPassword Method
Attempts to retrieve a user, selected by the combination of their email address and password
Namespace: Ignition.Crm.AccountManagementAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
public bool TryGetUserByEmailAndPassword(
string emailAddress,
string password,
out User foundUser
)
Public Function TryGetUserByEmailAndPassword (
emailAddress As String,
password As String,
<OutAttribute> ByRef foundUser As User
) As Boolean
public:
virtual bool TryGetUserByEmailAndPassword(
String^ emailAddress,
String^ password,
[OutAttribute] User^% foundUser
) sealed
abstract TryGetUserByEmailAndPassword :
emailAddress : string *
password : string *
foundUser : User byref -> bool
override TryGetUserByEmailAndPassword :
emailAddress : string *
password : string *
foundUser : User byref -> bool
- emailAddress String
- Email address of the user to retrieve
- password String
- Password of the user to retrieve
- foundUser User
- Will contain the retrieved user if the lookup was successful, otherwise null
BooleanWhether the lookup was successful