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

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "given a custID, a customer record will be returned as a dataset", MessageName := "getCustomerAsDataSet"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function getCustomerAsDataSet( _ 
   ByVal custID As String _ 
) As DataSet
C#
[WebMethodAttribute(Description = "given a custID, a customer record will be returned as a dataset", MessageName = "getCustomerAsDataSet")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet getCustomerAsDataSet(
   string custID
)
C++
[WebMethodAttribute(Description = L"given a custID, a customer record will be returned as a dataset", MessageName = L"getCustomerAsDataSet")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet getCustomerAsDataSet(
   String custID
) sealed 
J#
/** @attribute WebMethodAttribute(Description = "given a custID, a customer record will be returned as a dataset", MessageName = "getCustomerAsDataSet") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet getCustomerAsDataSet(
   string custID
)
JScript
public 

   WebMethodAttribute(Description = "given a custID, a customer record will be returned as a dataset", MessageName = "getCustomerAsDataSet")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function getCustomerAsDataSet(
   custID : String
) : DataSet

See Also