| 1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * Namespace: System.Web.Security
- * Class: FileAuthorizationModule
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: ??%
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.Web;
- namespace System.Web.Security
- {
- public sealed class FileAuthorizationModule : IHttpModule
- {
- public FileAuthorizationModule()
- {
- }
- public void Dispose()
- {
- }
- [MonoTODO]
- public void Init(HttpApplication app)
- {
- throw new NotImplementedException();
- }
- }
- }
|