public bool Verify(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, byte[] biometricState, out double score)
 {
     SealSignBSSClientTest.BiometricAuthenticationService.VerifyRequest inValue = new SealSignBSSClientTest.BiometricAuthenticationService.VerifyRequest();
     inValue.type           = type;
     inValue.biometricState = biometricState;
     SealSignBSSClientTest.BiometricAuthenticationService.VerifyResponse retVal = ((SealSignBSSClientTest.BiometricAuthenticationService.IBiometricAuthenticationServiceBasic)(this)).Verify(inValue);
     score = retVal.score;
     return(retVal.VerifyResult);
 }
 public System.Threading.Tasks.Task <bool> HasEnrollmentOnBehalfOfAsync(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, string id)
 {
     return(base.Channel.HasEnrollmentOnBehalfOfAsync(type, id));
 }
 public bool HasEnrollmentOnBehalfOf(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, string id)
 {
     return(base.Channel.HasEnrollmentOnBehalfOf(type, id));
 }
 public bool HasEnrollment(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type)
 {
     return(base.Channel.HasEnrollment(type));
 }
 public System.Threading.Tasks.Task EnrollOnBehalfOfAsync(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, string id, byte[] biometricState)
 {
     return(base.Channel.EnrollOnBehalfOfAsync(type, id, biometricState));
 }
 public void Enroll(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, byte[] biometricState)
 {
     base.Channel.Enroll(type, biometricState);
 }
 public void EnrollOnBehalfOf(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, string id, byte[] biometricState)
 {
     base.Channel.EnrollOnBehalfOf(type, id, biometricState);
 }
 public System.Threading.Tasks.Task RemoveAsync(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type)
 {
     return(base.Channel.RemoveAsync(type));
 }
 public void RemoveOnBehalfOf(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, string id)
 {
     base.Channel.RemoveOnBehalfOf(type, id);
 }
 public void Remove(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type)
 {
     base.Channel.Remove(type);
 }
 public System.Threading.Tasks.Task DisableAsync(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, string id)
 {
     return(base.Channel.DisableAsync(type, id));
 }
 public void Disable(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, string id)
 {
     base.Channel.Disable(type, id);
 }
 public VerifyOnBehalfOfRequest(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, string id, byte[] biometricState)
 {
     this.type           = type;
     this.id             = id;
     this.biometricState = biometricState;
 }
 public VerifyRequest(SealSignBSSClientTest.BiometricAuthenticationService.BiometricAuthenticationType type, byte[] biometricState)
 {
     this.type           = type;
     this.biometricState = biometricState;
 }