[Execute]¶
Controls permissions for executing of a static or instance method through the API.
For other security controls, see Security Attributes.
Example Usage¶
public class Person
{
public int PersonId { get; set; }
[Coalesce, Execute(Roles = "Payroll,HR")]
public void GiveRaise(int centsPerHour) {
...
}
...
}
Properties¶
public string Roles { get; set; }
- A comma-separated list of roles which are allowed to execute the method.
public SecurityPermissionLevels PermissionLevel { get; set; } = SecurityPermissionLevels.AllowAuthorized
The level of access to allow for the action for the method.
- Enum values are:
SecurityPermissionLevels.AllowAll
Allow all users to perform the action for the attribute, including users who are not authenticated at all.SecurityPermissionLevels.AllowAuthorized
Allow only users who are members of the roles specified on the attribute to perform the action. If no roles are specified on the attribute, then all authenticated users are allowed (no anonymous access).SecurityPermissionLevels.DenyAll
Deny the action to all users, regardless of authentication status or authorization level. IfDenyAll
is used, no API endpoint for the action will be generated.