committed by
GitHub
6 changed files with 19 additions and 21 deletions
@ -1,8 +1,9 @@ |
|||
using System.Threading; |
|||
using System.Security.Claims; |
|||
using System.Threading; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace LINGYUN.Abp.Identity.Session; |
|||
public interface IIdentitySessionChecker |
|||
{ |
|||
Task<bool> ValidateSessionAsync(string sessionId, CancellationToken cancellationToken = default); |
|||
Task<bool> ValidateSessionAsync(ClaimsPrincipal claimsPrincipal, CancellationToken cancellationToken = default); |
|||
} |
|||
|
|||
Loading…
Reference in new issue