/// <remarks/> public void processDebitCardAsync(Credentials credentials, debitCardRequest request, object userState) { if ((this.processDebitCardOperationCompleted == null)) { this.processDebitCardOperationCompleted = new System.Threading.SendOrPostCallback(this.OnprocessDebitCardOperationCompleted); } this.InvokeAsync("processDebitCard", new object[] { credentials, request }, this.processDebitCardOperationCompleted, userState); }
/// <remarks/> public void processDebitCardAsync(Credentials credentials, debitCardRequest request) { this.processDebitCardAsync(credentials, request, null); }
public transResponse processDebitCard([System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] Credentials credentials, [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] debitCardRequest request) { object[] results = this.Invoke("processDebitCard", new object[] { credentials, request }); return((transResponse)(results[0])); }