You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Security/Authorization/IAuthorizationResult.cs

20 lines
317 B

namespace Connected.Security.Authorization
{
public enum AuthorizationResultReason
{
OK = 0,
Empty = 1,
NoPrimaryKey = 2,
NoAllowFound = 3,
DenyFound = 4,
NoClaim = 5,
Other = 99
}
public interface IAuthorizationResult
{
bool Success { get; }
AuthorizationResultReason Reason { get; }
}
}