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

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "This creates a blank customer contact dataset. This is very usefull when adding a new customer contact. First, create a blank contact dataset by calling this function. Then add rows to the dataset to be passed to the add contacts function.", MessageName := "createCustomerContactsDataset"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function createCustomerContactsDataset() As DataSet
C#
[WebMethodAttribute(Description = "This creates a blank customer contact dataset. This is very usefull when adding a new customer contact. First, create a blank contact dataset by calling this function. Then add rows to the dataset to be passed to the add contacts function.", MessageName = "createCustomerContactsDataset")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet createCustomerContactsDataset()
C++
[WebMethodAttribute(Description = L"This creates a blank customer contact dataset. This is very usefull when adding a new customer contact. First, create a blank contact dataset by calling this function. Then add rows to the dataset to be passed to the add contacts function.", MessageName = L"createCustomerContactsDataset")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet createCustomerContactsDataset() sealed 
J#
/** @attribute WebMethodAttribute(Description = "This creates a blank customer contact dataset. This is very usefull when adding a new customer contact. First, create a blank contact dataset by calling this function. Then add rows to the dataset to be passed to the add contacts function.", MessageName = "createCustomerContactsDataset") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet createCustomerContactsDataset()
JScript
public 

   WebMethodAttribute(Description = "This creates a blank customer contact dataset. This is very usefull when adding a new customer contact. First, create a blank contact dataset by calling this function. Then add rows to the dataset to be passed to the add contacts function.", MessageName = "createCustomerContactsDataset")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function createCustomerContactsDataset() : DataSet

See Also