Exemplo n.º 1
0
 /// <remarks/>
 public void CheckVerificationAsync(Credentials credentials, Application application, Terminal terminal, DemandDepositAccount demandDepositAccount, Transaction transaction, Identification identification, Address address, ExtendedParameters[] extendedParameters) {
     this.CheckVerificationAsync(credentials, application, terminal, demandDepositAccount, transaction, identification, address, extendedParameters, null);
 }
Exemplo n.º 2
0
 /// <remarks/>
 public void CheckVerificationAsync(Credentials credentials, Application application, Terminal terminal, DemandDepositAccount demandDepositAccount, Transaction transaction, Identification identification, Address address, ExtendedParameters[] extendedParameters, object userState) {
     if ((this.CheckVerificationOperationCompleted == null)) {
         this.CheckVerificationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckVerificationOperationCompleted);
     }
     this.InvokeAsync("CheckVerification", new object[] {
                 credentials,
                 application,
                 terminal,
                 demandDepositAccount,
                 transaction,
                 identification,
                 address,
                 extendedParameters}, this.CheckVerificationOperationCompleted, userState);
 }
Exemplo n.º 3
0
 public Response CheckVerification(Credentials credentials, Application application, Terminal terminal, DemandDepositAccount demandDepositAccount, Transaction transaction, Identification identification, Address address, [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] ExtendedParameters[] extendedParameters) {
     object[] results = this.Invoke("CheckVerification", new object[] {
                 credentials,
                 application,
                 terminal,
                 demandDepositAccount,
                 transaction,
                 identification,
                 address,
                 extendedParameters});
     return ((Response)(results[0]));
 }