EWebAccountServiceTryGetUserByRecordNumberAndPassword(String, String, User) Method
Note: This API is now obsolete.
Attempts to retrieve a user, selected by the combination of their record number and password
Namespace: Ignition.Crm.AccountManagementAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
[ObsoleteAttribute("Use the version that takes an int record number instead (5.4)",
true)]
public bool TryGetUserByRecordNumberAndPassword(
string recordNumber,
string password,
out User foundUser
)
<ObsoleteAttribute("Use the version that takes an int record number instead (5.4)",
true)>
Public Function TryGetUserByRecordNumberAndPassword (
recordNumber As String,
password As String,
<OutAttribute> ByRef foundUser As User
) As Boolean
public:
[ObsoleteAttribute(L"Use the version that takes an int record number instead (5.4)",
true)]
virtual bool TryGetUserByRecordNumberAndPassword(
String^ recordNumber,
String^ password,
[OutAttribute] User^% foundUser
) sealed
[<ObsoleteAttribute("Use the version that takes an int record number instead (5.4)",
true)>]
abstract TryGetUserByRecordNumberAndPassword :
recordNumber : string *
password : string *
foundUser : User byref -> bool
[<ObsoleteAttribute("Use the version that takes an int record number instead (5.4)",
true)>]
override TryGetUserByRecordNumberAndPassword :
recordNumber : string *
password : string *
foundUser : User byref -> bool
- recordNumber String
- Record number 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