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

Syntax

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

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

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

See Also