在一定时间后注销用户
本文关键字:注销 用户 定时间 | 更新日期: 2023-09-27 18:36:04
我开发了一个Windows表单程序(带有用户登录的E-POS),但作为一项要求,我希望它在30分钟后将用户从系统中注销。我找到了以下代码并玩了一下,但是出现错误:
字段初始值设定项不能引用非静态字段、方法或属性...
通过代码中出现的第一个实例_TimerTick
。
private System.Threading.Timer timer = new System.Threading.Timer(
_TimerTick,
null,
1000 * 30 * 60,
Timeout.Infinite);
private void _OnUserActivity(object sender, EventArgs e)
{
if (timer != null)
{
timer.Change(1000 * 30 * 60, Timeout.Infinite);
}
}
private void _TimerTick(object state)
{
var myLogin = new LoginForm(this);
myLogin.userCode = null;
MainControlsPanel.Hide();
// the user has been inactive for 30 minutes; log him out
}
我的意见是在类构造函数中分配计时器:
而不是
private System.Threading.Timer timer = new System.Threading.Timer(
_TimerTick,
null,
1000 * 30 * 60,
Timeout.Infinite);
我会使用这样的东西:
class YourClass
{
private System.Threading.Timer timer;
public YourClass()
{
timer = new System.Threading.Timer(
_TimerTick,
null,
1000 * 30 * 60,
Timeout.Infinite);
}
//...
}
或者还有另一种演练方法