IMediaMaticPermissions
Namespace: MJCZone.MediaMatic.AspNetCore.Security
Assembly: MJCZone.MediaMatic.AspNetCore
Summary
Interface for implementing custom authorization logic for MediaMatic operations.
abstract public
Note: This is an interface that defines a contract. Look for implementing classes in the same or related namespaces.
Contents
Methods (1)
Methods
IsAuthorizedAsync
Determines whether a user is authorized to perform a specific operation.
csharp
Task<bool> IsAuthorizedAsync(IOperationContext context)Parameters
- context (IOperationContext) - The authorization context containing operation and resource details.
Returns
Type: Task<bool>
True if the user is authorized; otherwise, false.