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.
|
|
1 year ago | |
|---|---|---|
| .. | ||
| LINGYUN/Abp/Identity/Session | 1 year ago | |
| FodyWeavers.xml | 1 year ago | |
| FodyWeavers.xsd | 1 year ago | |
| LINGYUN.Abp.Identity.Session.csproj | 1 year ago | |
| README.md | 1 year ago | |
README.md
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);
});
}
}