Namespace: ctAC
Assembly: ctAC (in ctAC.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| <WebMethodAttribute(Description := "given a custID, a customer record will be returned.", MessageName := "getCustomerFromQueue"), _ SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)> Public Function getCustomerFromQueue( _ ByVal custID As String _ ) As customer |
| C# |
|---|
| [WebMethodAttribute(Description = "given a custID, a customer record will be returned.", MessageName = "getCustomerFromQueue")] [SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)] public customer getCustomerFromQueue( string custID ) |
| C++ |
|---|
| [WebMethodAttribute(Description = L"given a custID, a customer record will be returned.", MessageName = L"getCustomerFromQueue")] [SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)] public: customer getCustomerFromQueue( String custID ) sealed |
| J# |
|---|
| /** @attribute WebMethodAttribute(Description = "given a custID, a customer record will be returned.", MessageName = "getCustomerFromQueue") */ /** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */ public customer getCustomerFromQueue( string custID ) |
| JScript |
|---|
| public WebMethodAttribute(Description = "given a custID, a customer record will be returned.", MessageName = "getCustomerFromQueue") SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) function getCustomerFromQueue( custID : String ) : customer |