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

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "Saves a new entry to the soAddress table for a customer", MessageName := "saveCustomerAddressToQueue"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function saveCustomerAddressToQueue( _ 
   ByVal userGUID As String,  _ 
   ByVal actionType As String,  _ 
   ByVal tmpAddress As address _ 
) As DataSet
C#
[WebMethodAttribute(Description = "Saves a new entry to the soAddress table for a customer", MessageName = "saveCustomerAddressToQueue")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet saveCustomerAddressToQueue(
   string userGUID,
   string actionType,
   address tmpAddress
)
C++
[WebMethodAttribute(Description = L"Saves a new entry to the soAddress table for a customer", MessageName = L"saveCustomerAddressToQueue")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet saveCustomerAddressToQueue(
   String userGUID,
   String actionType,
   address tmpAddress
) sealed 
J#
/** @attribute WebMethodAttribute(Description = "Saves a new entry to the soAddress table for a customer", MessageName = "saveCustomerAddressToQueue") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet saveCustomerAddressToQueue(
   string userGUID,
   string actionType,
   address tmpAddress
)
JScript
public 

   WebMethodAttribute(Description = "Saves a new entry to the soAddress table for a customer", MessageName = "saveCustomerAddressToQueue")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function saveCustomerAddressToQueue(
   userGUID : String,
   actionType : String,
   tmpAddress : address
) : DataSet

See Also