| 12345678910111213141516171819 |
- /* System.Web.Configuration
- * Authors:
- * Leen Toelen ([email protected])
- * Copyright (C) 2001 Leen Toelen
- */
- namespace System.Web.Configuration {
- /// <summary>
- /// Defines the AuthenticationMode for a Web Application.
- /// </summary>
- public enum AuthenticationMode{
- None,
- Windows,
- Passport,
- Forms
- }
- } //namespace System.Web.Configuration
|