mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-31 01:40:42 +00:00
AES
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using Esiur.Security.Permissions;
|
||||
|
||||
namespace Esiur.Security.Management;
|
||||
|
||||
/// <summary>
|
||||
/// Audits a resource operation before it is executed. A
|
||||
/// <see cref="Ruling.Denied"/> result may veto the operation, while
|
||||
/// <see cref="Ruling.Allowed"/> and <see cref="Ruling.DontCare"/> never grant
|
||||
/// authorization or override another manager's denial.
|
||||
/// </summary>
|
||||
public interface IAuditingManager : IResourceManager
|
||||
{
|
||||
Ruling Applicable(ResourceManagerContext context);
|
||||
}
|
||||
Reference in New Issue
Block a user