Namespace: ctAC
Assembly: ctAC (in ctAC.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| <SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In), _ WebMethodAttribute(Description := "Save payment information to the DB for future use", MessageName := "saveUserPaymentMethod")> Public Function saveUserPaymentMethod( _ ByVal actionType As String, _ ByVal inMethod As payments.userPaymentMethod _ ) As DataSet |
| C# |
|---|
| [SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)] [WebMethodAttribute(Description = "Save payment information to the DB for future use", MessageName = "saveUserPaymentMethod")] public DataSet saveUserPaymentMethod( string actionType, payments.userPaymentMethod inMethod ) |
| C++ |
|---|
| [SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)] [WebMethodAttribute(Description = L"Save payment information to the DB for future use", MessageName = L"saveUserPaymentMethod")] public: DataSet saveUserPaymentMethod( String actionType, payments.userPaymentMethod inMethod ) sealed |
| J# |
|---|
| /** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */ /** @attribute WebMethodAttribute(Description = "Save payment information to the DB for future use", MessageName = "saveUserPaymentMethod") */ public DataSet saveUserPaymentMethod( string actionType, payments.userPaymentMethod inMethod ) |
| JScript |
|---|
| public SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) WebMethodAttribute(Description = "Save payment information to the DB for future use", MessageName = "saveUserPaymentMethod") function saveUserPaymentMethod( actionType : String, inMethod : payments.userPaymentMethod ) : DataSet |