using System.Threading.Tasks; using Microsoft.AspNetCore.Identity; namespace Umbraco.Core.Security { /// /// An IUserStore interface part to implement if the store supports validating user session Ids /// /// public interface IUserSessionStore : IUserStore where TUser : class { Task ValidateSessionIdAsync(string userId, string sessionId); } }