/// <remarks/> public void TransactionSetupAsync(Credentials credentials, Application application, Terminal terminal, Transaction transaction, TransactionSetup transactionSetup1, Address address, PaymentAccount paymentAccount, ExtendedParameters[] extendedParameters) { this.TransactionSetupAsync(credentials, application, terminal, transaction, transactionSetup1, address, paymentAccount, extendedParameters, null); }
/// <remarks/> public void TransactionSetupAsync(Credentials credentials, Application application, Terminal terminal, Transaction transaction, TransactionSetup transactionSetup1, Address address, PaymentAccount paymentAccount, ExtendedParameters[] extendedParameters, object userState) { if ((this.TransactionSetupOperationCompleted == null)) { this.TransactionSetupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnTransactionSetupOperationCompleted); } this.InvokeAsync("TransactionSetup", new object[] { credentials, application, terminal, transaction, transactionSetup1, address, paymentAccount, extendedParameters}, this.TransactionSetupOperationCompleted, userState); }
public Response TransactionSetup(Credentials credentials, Application application, Terminal terminal, Transaction transaction, [System.Xml.Serialization.XmlElementAttribute("transactionSetup")] TransactionSetup transactionSetup1, Address address, PaymentAccount paymentAccount, [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] ExtendedParameters[] extendedParameters) { object[] results = this.Invoke("TransactionSetup", new object[] { credentials, application, terminal, transaction, transactionSetup1, address, paymentAccount, extendedParameters}); return ((Response)(results[0])); }