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

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "Adds new entries in custcontact for all rows in the dataset", MessageName := "saveCustomerContactsFromDataSet"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function saveCustomerContactsFromDataSet( _ 
   ByVal inSet As DataSet _ 
) As DataSet
C#
[WebMethodAttribute(Description = "Adds new entries in custcontact for all rows in the dataset", MessageName = "saveCustomerContactsFromDataSet")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet saveCustomerContactsFromDataSet(
   DataSet inSet
)
C++
[WebMethodAttribute(Description = L"Adds new entries in custcontact for all rows in the dataset", MessageName = L"saveCustomerContactsFromDataSet")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet saveCustomerContactsFromDataSet(
   DataSet inSet
) sealed 
J#
/** @attribute WebMethodAttribute(Description = "Adds new entries in custcontact for all rows in the dataset", MessageName = "saveCustomerContactsFromDataSet") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet saveCustomerContactsFromDataSet(
   DataSet inSet
)
JScript
public 

   WebMethodAttribute(Description = "Adds new entries in custcontact for all rows in the dataset", MessageName = "saveCustomerContactsFromDataSet")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function saveCustomerContactsFromDataSet(
   inSet : DataSet
) : DataSet

See Also