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

Syntax

Visual Basic (Declaration)
<SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In), _
 WebMethodAttribute(Description := "Get descriptions for all the customer statuses.", MessageName := "getStatusDescriptions")>

Public Function getStatusDescriptions() As DataSet
C#
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
[WebMethodAttribute(Description = "Get descriptions for all the customer statuses.", MessageName = "getStatusDescriptions")]
public DataSet getStatusDescriptions()
C++
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
[WebMethodAttribute(Description = L"Get descriptions for all the customer statuses.", MessageName = L"getStatusDescriptions")]
public:
 DataSet getStatusDescriptions() sealed 
J#
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
/** @attribute WebMethodAttribute(Description = "Get descriptions for all the customer statuses.", MessageName = "getStatusDescriptions") */
public DataSet getStatusDescriptions()
JScript
public 

   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
   WebMethodAttribute(Description = "Get descriptions for all the customer statuses.", MessageName = "getStatusDescriptions")
function getStatusDescriptions() : DataSet

See Also