Namespace: ctAC
Assembly: ctAC (in ctAC.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| <WebMethodAttribute(Description := "Update customer credit card. This will save the credit card information back into the customer record for future use.", MessageName := "updateCustomerCardToQueue"), _ SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)> Public Function updateCustomerCardToQueue( _ ByVal custID As String, _ ByVal cardNumber As String, _ ByVal cardHolderName As String, _ ByVal cardExpDate As Date, _ ByVal cardType As String _ ) As String |
| C# |
|---|
| [WebMethodAttribute(Description = "Update customer credit card. This will save the credit card information back into the customer record for future use.", MessageName = "updateCustomerCardToQueue")] [SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)] public string updateCustomerCardToQueue( string custID, string cardNumber, string cardHolderName, DateTime cardExpDate, string cardType ) |
| C++ |
|---|
| [WebMethodAttribute(Description = L"Update customer credit card. This will save the credit card information back into the customer record for future use.", MessageName = L"updateCustomerCardToQueue")] [SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)] public: String updateCustomerCardToQueue( String custID, String cardNumber, String cardHolderName, DateTime cardExpDate, String cardType ) sealed |
| J# |
|---|
| /** @attribute WebMethodAttribute(Description = "Update customer credit card. This will save the credit card information back into the customer record for future use.", MessageName = "updateCustomerCardToQueue") */ /** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */ public string updateCustomerCardToQueue( string custID, string cardNumber, string cardHolderName, DateTime cardExpDate, string cardType ) |
| JScript |
|---|
| public WebMethodAttribute(Description = "Update customer credit card. This will save the credit card information back into the customer record for future use.", MessageName = "updateCustomerCardToQueue") SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) function updateCustomerCardToQueue( custID : String, cardNumber : String, cardHolderName : String, cardExpDate : DateTime, cardType : String ) : String |