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.Threading.Tasks;
3
4namespace Paiwise
5{
9 public interface IIdentityAuthenticatorService : IModule, IProcessingSupport<IIdentityApplication>
10 {
15 Task Validate(IIdentityApplication Application);
16 }
17}
Interface for identity applications.
Interface for identity application authenticator services.
Task Validate(IIdentityApplication Application)
Validates an identity application.
Interface for late-bound modules loaded at runtime.
Definition: IModule.cs:9
Interface for detecting interfaces supporting objects with predefined features.