Example #1
0
 /// <remarks/>
 public void PaymentAccountCreateWithTransIDAsync(Credentials credentials, Application application, Transaction transaction, PaymentAccount paymentAccount, Address address, ExtendedParameters[] extendedParameters) {
     this.PaymentAccountCreateWithTransIDAsync(credentials, application, transaction, paymentAccount, address, extendedParameters, null);
 }
Example #2
0
 /// <remarks/>
 public void PaymentAccountCreateWithTransIDAsync(Credentials credentials, Application application, Transaction transaction, PaymentAccount paymentAccount, Address address, ExtendedParameters[] extendedParameters, object userState) {
     if ((this.PaymentAccountCreateWithTransIDOperationCompleted == null)) {
         this.PaymentAccountCreateWithTransIDOperationCompleted = new System.Threading.SendOrPostCallback(this.OnPaymentAccountCreateWithTransIDOperationCompleted);
     }
     this.InvokeAsync("PaymentAccountCreateWithTransID", new object[] {
                 credentials,
                 application,
                 transaction,
                 paymentAccount,
                 address,
                 extendedParameters}, this.PaymentAccountCreateWithTransIDOperationCompleted, userState);
 }
Example #3
0
 public Response PaymentAccountCreateWithTransID(Credentials credentials, Application application, Transaction transaction, PaymentAccount paymentAccount, Address address, [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] ExtendedParameters[] extendedParameters) {
     object[] results = this.Invoke("PaymentAccountCreateWithTransID", new object[] {
                 credentials,
                 application,
                 transaction,
                 paymentAccount,
                 address,
                 extendedParameters});
     return ((Response)(results[0]));
 }