| 123456789101112131415161718192021222324252627282930313233 |
- //
- // System.Web.Security.RoleManagerModule
- //
- // Authors:
- // Ben Maurer ([email protected])
- //
- // (C) 2003 Ben Maurer
- //
- #if NET_1_2
- using System.Collections;
- using System.Collections.Specialized;
- using System.Text;
- namespace System.Web.Security {
- public sealed class RoleManagerModule : IHttpModule {
- public event RoleManagerEventHandler GetRoles;
- [MonoTODO]
- public void Dispose ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Init (HttpApplication app)
- {
- throw new NotImplementedException ();
- }
- }
- }
- #endif
|