Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.Configuration_2.0/HttpModulesSection.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Configuration_2.0/HttpModulesSection.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/mcs/class/System.Web/System.Web.Configuration_2.0/HttpModulesSection.cs b/mcs/class/System.Web/System.Web.Configuration_2.0/HttpModulesSection.cs
index 6b674b22e3c..bbcfd41e1d5 100644
--- a/mcs/class/System.Web/System.Web.Configuration_2.0/HttpModulesSection.cs
+++ b/mcs/class/System.Web/System.Web.Configuration_2.0/HttpModulesSection.cs
@@ -32,7 +32,6 @@
using System;
using System.Configuration;
-using System.Web.Security;
namespace System.Web.Configuration
{
@@ -80,16 +79,6 @@ namespace System.Web.Configuration
coll.AddModule (item.Name, module);
}
- /* XXX the 1.x config stuff does this
- * indirectly.. I'm not sure we want to do it
- * here, but this keeps things working in much
- * the same fashion in 2.0-land. */
- {
- IHttpModule module = new DefaultAuthenticationModule ();
- module.Init (app);
- coll.AddModule ("DefaultAuthentication", module);
- }
-
return coll;
}