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 := "saveCustomerAddress"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

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

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

See Also