| 12345678910111213141516171819202122232425262728293031 |
- /**
- * Namespace: System.Web.Util
- * Class: ApacheVersionInfo
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: ??%
- *
- * (C) Gaurav Vaish (2001)
- */
- namespace System.Web.Util
- {
- /// <summary>
- /// Versions of the modules related to Apache
- /// </summary>
- /// <remarks>
- /// At present I don't know what modules are to be loaded and how
- /// </remarks>
- /// <see>
- /// System.Web.Util.IISVersionInfo
- /// </see>
- internal class ApacheVersionInfo
- {
- public ApacheVersionInfo()
- {
- }
- }
- }
|