Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IIdentityAuthenticatorService.cs
1using System.Collections.Generic;
2using System.Threading.Tasks;
4
5namespace Paiwise
6{
10 public interface IIdentityAuthenticatorService : IModule, IProcessingSupport<IIdentityApplication>
11 {
18 Task<IAuthenticationResult> IsValid(KeyValuePair<string, object>[] Identity, IEnumerable<IPhoto> Photos);
19 }
20}
Interface for currency converter services
Task< IAuthenticationResult > IsValid(KeyValuePair< string, object >[] Identity, IEnumerable< IPhoto > Photos)
Checks the veracity of identity claims.
Interface for late-bound modules loaded at runtime.
Definition: IModule.cs:9
Interface for detecting interfaces supporting objects with predefined features.