ApacheVersionInfo.cs 637 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * Namespace: System.Web.Util
  3. * Class: ApacheVersionInfo
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>, <[email protected]>
  8. * Implementation: yes
  9. * Status: ??%
  10. *
  11. * (C) Gaurav Vaish (2001)
  12. */
  13. namespace System.Web.Util
  14. {
  15. /// <summary>
  16. /// Versions of the modules related to Apache
  17. /// </summary>
  18. /// <remarks>
  19. /// At present I don't know what modules are to be loaded and how
  20. /// </remarks>
  21. /// <see>
  22. /// System.Web.Util.IISVersionInfo
  23. /// </see>
  24. internal class ApacheVersionInfo
  25. {
  26. public ApacheVersionInfo()
  27. {
  28. }
  29. }
  30. }