Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IAuthorization.cs
1namespace Waher.Security
2{
6 public interface IAuthorization<T>
7 {
14 bool IsAuthorized(T Resource, IHasPrivileges User);
15 }
16}
Basic authorization interface for objects of type T .
bool IsAuthorized(T Resource, IHasPrivileges User)
Checks if an user or object is authorized to perform an action.
Interface for objects that have privileges.