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

Syntax

Visual Basic (Declaration)
<SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In), _
 WebMethodAttribute(Description := "Save an existing Customer. This should be used when saving an existing customer.", MessageName := "saveCustomer")>

Public Function saveCustomer( _ 
   ByVal inCust As customer _ 
) As customer
C#
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
[WebMethodAttribute(Description = "Save an existing Customer. This should be used when saving an existing customer.", MessageName = "saveCustomer")]
public customer saveCustomer(
   customer inCust
)
C++
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
[WebMethodAttribute(Description = L"Save an existing Customer. This should be used when saving an existing customer.", MessageName = L"saveCustomer")]
public:
 customer saveCustomer(
   customer inCust
) sealed 
J#
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
/** @attribute WebMethodAttribute(Description = "Save an existing Customer. This should be used when saving an existing customer.", MessageName = "saveCustomer") */
public customer saveCustomer(
   customer inCust
)
JScript
public 

   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
   WebMethodAttribute(Description = "Save an existing Customer. This should be used when saving an existing customer.", MessageName = "saveCustomer")
function saveCustomer(
   inCust : customer
) : customer

See Also