AuthenticationMode.cs 360 B

12345678910111213141516171819
  1. /* System.Web.Configuration
  2. * Authors:
  3. * Leen Toelen ([email protected])
  4. * Copyright (C) 2001 Leen Toelen
  5. */
  6. namespace System.Web.Configuration {
  7. /// <summary>
  8. /// Defines the AuthenticationMode for a Web Application.
  9. /// </summary>
  10. public enum AuthenticationMode{
  11. None,
  12. Windows,
  13. Passport,
  14. Forms
  15. }
  16. } //namespace System.Web.Configuration