Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IUserSource.cs
1using System.Threading.Tasks;
2
3namespace Waher.Security
4{
8 public interface IUserSource
9 {
15 Task<IUser> TryGetUser(string UserName);
16 }
17}
Interface for data sources containing users.
Definition: IUserSource.cs:9
Task< IUser > TryGetUser(string UserName)
Tries to get a user with a given user name.