/* System.Web.Configuration * Authors: * Leen Toelen (toelen@hotmail.com) * Copyright (C) 2001 Leen Toelen */ namespace System.Web.Configuration { /// /// Defines the AuthenticationMode for a Web Application. /// public enum AuthenticationMode{ None, Windows, Passport, Forms } } //namespace System.Web.Configuration