Example #1
0
 /// <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);
 }
Example #2
0
 /// <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);
 }
Example #3
0
 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]));
 }