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.
14 lines
411 B
14 lines
411 B
namespace WcfControlMonitorWebLib
|
|
{
|
|
/// <summary>
|
|
/// Web 参数
|
|
/// </summary>
|
|
internal static class WebParameter
|
|
{
|
|
/// <summary>
|
|
/// 会话过期时间。
|
|
/// (以分钟为单位,前端的账号登录后,超过这个时间没操作,就认为过期。0 表示永不过期)
|
|
/// </summary>
|
|
internal const int SESSION_TIMEOUT = 20;
|
|
}
|
|
}
|