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

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "Used to see if an customer exists, Returns result=TRUE/FALSE, resultMessage", MessageName := "checkCustomerExists"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function checkCustomerExists( _ 
   ByVal userGUID As String,  _ 
   ByVal paramString As String _ 
) As DataSet
C#
[WebMethodAttribute(Description = "Used to see if an customer exists, Returns result=TRUE/FALSE, resultMessage", MessageName = "checkCustomerExists")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet checkCustomerExists(
   string userGUID,
   string paramString
)
C++
[WebMethodAttribute(Description = L"Used to see if an customer exists, Returns result=TRUE/FALSE, resultMessage", MessageName = L"checkCustomerExists")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet checkCustomerExists(
   String userGUID,
   String paramString
) sealed 
J#
/** @attribute WebMethodAttribute(Description = "Used to see if an customer exists, Returns result=TRUE/FALSE, resultMessage", MessageName = "checkCustomerExists") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet checkCustomerExists(
   string userGUID,
   string paramString
)
JScript
public 

   WebMethodAttribute(Description = "Used to see if an customer exists, Returns result=TRUE/FALSE, resultMessage", MessageName = "checkCustomerExists")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function checkCustomerExists(
   userGUID : String,
   paramString : String
) : DataSet

See Also