Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IRemoteAuthenticator.cs
1using System.Threading.Tasks;
3
4namespace Paiwise
5{
9 public interface IRemoteAuthenticator : IProcessingSupport<IRemoteIdentifier>
10 {
14 string SupportedAddressType { get; }
15
19 string MarkdownDescription { get; }
20
27 }
28}
Contains information about a remote identifier.
Interface for remote authenticators.
string MarkdownDescription
Markdown text describing the authenticator, for inclusion in API documentation.
string SupportedAddressType
Address Type the authenticator supports.
Task< IRemoteAuthentication > CreateAuthentication(IRemoteIdentifier RemoteIdentifier)
Creates a remote authentication object instance for a remote identifier.
Interface for remote identifiers.
Interface for detecting interfaces supporting objects with predefined features.