| 123456789101112131415161718192021222324252627 |
- //
- // System.Web.Security.FileAuthorizationModule
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System.Web;
- namespace System.Web.Security
- {
- public sealed class FileAuthorizationModule : IHttpModule
- {
- public void Dispose ()
- {
- }
- [MonoTODO]
- public void Init (HttpApplication app)
- {
- throw new NotImplementedException ();
- }
- }
- }
|