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

Syntax

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

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

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

See Also