2007-01-02 Igor Zelmanovich <igorz@mainsoft.com>
[mono.git] / mcs / class / System.Web / Test / TestMonoWeb / SyncModule.cs
index 7fddb06a8bf2212c8901ac3837df7f4e3df4b170..564ad74a486709c5b90618a40083fc68bed725e9 100644 (file)
@@ -1,37 +1,37 @@
-using System;\r
-using System.Collections;\r
-using System.Web; \r
-\r
-namespace TestMonoWeb\r
-{\r
-       public class SyncModule : IHttpModule {\r
-               public String ModuleName { \r
-                       get { return "HelloWorldModule"; } \r
-               }    \r
-               //In the Init function, register for HttpApplication \r
-               //events by adding your handlers.\r
-               public void Init(HttpApplication application) { \r
-                       application.BeginRequest += (new EventHandler(this.Application_BeginRequest));\r
-                       application.EndRequest += (new EventHandler(this.Application_EndRequest));\r
-               }\r
-    \r
-               //Your BeginRequest event handler.\r
-               private void Application_BeginRequest(Object source, EventArgs e) {\r
-                       HttpApplication application = (HttpApplication)source;\r
-                       HttpContext context = application.Context;\r
-        \r
-                       context.Response.Write("SyncModule.Application_BeginRequest()<br>\n");\r
-               }\r
-    \r
-               //Your EndRequest event handler.\r
-               private void Application_EndRequest(Object source, EventArgs e) {\r
-                       HttpApplication application = (HttpApplication)source;\r
-                       HttpContext context = application.Context;\r
-        \r
-                       context.Response.Write("SyncModule.Application_EndRequest()<br>\n");\r
-               }  \r
-      \r
-               public void Dispose() {\r
-               }\r
-       }\r
-}\r
+using System;
+using System.Collections;
+using System.Web; 
+
+namespace TestMonoWeb
+{
+       public class SyncModule : IHttpModule {
+               public String ModuleName { 
+                       get { return "HelloWorldModule"; } 
+               }    
+               //In the Init function, register for HttpApplication 
+               //events by adding your handlers.
+               public void Init(HttpApplication application) { 
+                       application.BeginRequest += (new EventHandler(this.Application_BeginRequest));
+                       application.EndRequest += (new EventHandler(this.Application_EndRequest));
+               }
+    
+               //Your BeginRequest event handler.
+               private void Application_BeginRequest(Object source, EventArgs e) {
+                       HttpApplication application = (HttpApplication)source;
+                       HttpContext context = application.Context;
+        
+                       context.Response.Write("SyncModule.Application_BeginRequest()<br>\n");
+               }
+    
+               //Your EndRequest event handler.
+               private void Application_EndRequest(Object source, EventArgs e) {
+                       HttpApplication application = (HttpApplication)source;
+                       HttpContext context = application.Context;
+        
+                       context.Response.Write("SyncModule.Application_EndRequest()<br>\n");
+               }  
+      
+               public void Dispose() {
+               }
+       }
+}