Verifies an emailAddress/password combination in the system Calls: xct_spACCheckLogin


Namespace: ctAC
Assembly: ctAC (in ctAC.dll)

Syntax

Visual Basic (Declaration)
<SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In), _
 WebMethodAttribute(Description := "Verifies an emailAddress/password combination in the system", MessageName := "checkLogin")>

Public Function checkLogin( _ 
   ByVal emailAddress As String,  _ 
   ByVal password As String _ 
) As DataSet
C#
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
[WebMethodAttribute(Description = "Verifies an emailAddress/password combination in the system", MessageName = "checkLogin")]
public DataSet checkLogin(
   string emailAddress,
   string password
)
C++
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
[WebMethodAttribute(Description = L"Verifies an emailAddress/password combination in the system", MessageName = L"checkLogin")]
public:
 DataSet checkLogin(
   String emailAddress,
   String password
) sealed 
J#
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
/** @attribute WebMethodAttribute(Description = "Verifies an emailAddress/password combination in the system", MessageName = "checkLogin") */
public DataSet checkLogin(
   string emailAddress,
   string password
)
JScript
public 

   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
   WebMethodAttribute(Description = "Verifies an emailAddress/password combination in the system", MessageName = "checkLogin")
function checkLogin(
   emailAddress : String,
   password : String
) : DataSet

Parameters

emailAddress
password

See Also