Exemple #1
0
 public bool Identify(BWScli.BWS.BiometricClassID partitionId, BWScli.BWS.Sample[] samples, BWScli.BWS.ClassificationFlags flags, int maxResults, out BWScli.BWS.ScoredClass[] matches, out string messages)
 {
     BWScli.BWS.IdentifyRequest inValue = new BWScli.BWS.IdentifyRequest();
     inValue.partitionId = partitionId;
     inValue.samples     = samples;
     inValue.flags       = flags;
     inValue.maxResults  = maxResults;
     BWScli.BWS.IdentifyResponse retVal = ((BWScli.BWS.IBioIDWebService)(this)).Identify(inValue);
     matches  = retVal.matches;
     messages = retVal.messages;
     return(retVal.IdentifyResult);
 }
Exemple #2
0
 public System.Threading.Tasks.Task <BWScli.BWS.IdentifyResponse> IdentifyAsync(BWScli.BWS.IdentifyRequest request)
 {
     return(base.Channel.IdentifyAsync(request));
 }
Exemple #3
0
 BWScli.BWS.IdentifyResponse BWScli.BWS.IBioIDWebService.Identify(BWScli.BWS.IdentifyRequest request)
 {
     return(base.Channel.Identify(request));
 }