.NET
autolog.txt
Associated article: AutoLogout for Application Security
Tags: .NET C/C++ Design
Published source code accompanying the article by Jonathan Lurie in which he explains AutoLogout, an application- level security technique that shuts down the system due to user inactivity. Jonathan presents a C# AutoLogout for .NET.
AutoLogout For Application Security
by Jonathan Lurie
Listing One
using System;
using System.Windows.Forms;
using System.Threading;
namespace NSAutoLogout
{
public class AutoLogout
{
// This is the maximum number of minutes the application can remain
// without activity before the AutoLogout routine ...


