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.
518 B
518 B
LINGYUN.Abp.Identity.Session
用户会话基础模块,提供相关的通用接口
配置使用
[DependsOn(typeof(AbpIdentitySessionModule))]
public class YouProjectModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<IdentitySessionCheckOptions>(options =>
{
// 设置会话缓存与数据库刷新间隔为10分钟
options.KeepAccessTimeSpan = TimeSpan.FromMinutes(10);
});
}
}